10 lines
204 B
Java
10 lines
204 B
Java
import java.lang.Boolean;
|
|
|
|
public class Bug371 {
|
|
static m1(x, y) { return x || y; }
|
|
static m2(x, y) { return x && y; }
|
|
|
|
public static test() {
|
|
return m2(m1(true, false), true);
|
|
}
|
|
} |