Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 1m55s
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);
|
|
}
|
|
} |