12 lines
147 B
Plaintext
12 lines
147 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
public class Bug296 {
|
||
|
public static m1() {
|
||
|
return m2();
|
||
|
}
|
||
|
|
||
|
static m2() {
|
||
|
return 10;
|
||
|
}
|
||
|
}
|