14 lines
152 B
Plaintext
14 lines
152 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.lang.Float;
|
||
|
|
||
|
public class Bug293 {
|
||
|
bar(a) {
|
||
|
return 2 * a;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
interface IFoo {
|
||
|
void ga();
|
||
|
}
|
||
|
|