mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-15 05:45:01 -05:00
21 lines
229 B
Java
21 lines
229 B
Java
|
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");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|