Files
JavaCompilerCore/resources/bytecode/javFiles/Bug371.jav
Daniel Holle d7676f36e3
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 1m55s
Fix #371
2025-07-23 11:44:10 +02:00

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);
}
}