fernflower/test/unit/classes/TestClassLoop.java

21 lines
229 B
Java
Raw Normal View History

2014-03-04 09:13:11 -05:00
package test.input;
public class TestLoop {
public static void main(String[] args) {
boolean a = true;
while(true) {
try {
if(!a) {
return;
}
} finally {
System.out.println("1");
}
}
}
}