JavaCompilerCore/resources/bytecode/javFiles/Bug122.jav

12 lines
199 B
Plaintext
Raw Normal View History

import java.lang.Integer;
import java.lang.Boolean;
2024-03-14 12:50:56 +00:00
public class Bug122 {
public void main() {
if (true) {
for (Integer i = 0; i < 10; i++) {
}
}
}
}