JavaCompilerCore/resources/bytecode/javFiles/Bug296.jav
Daniel Holle 01e374eadd
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 3m29s
Fix #296
2024-03-18 10:14:40 +01:00

12 lines
147 B
Java

import java.lang.Integer;
public class Bug296 {
public static m1() {
return m2();
}
static m2() {
return 10;
}
}