mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-15 05:45:01 -05:00
40 lines
741 B
Plaintext
40 lines
741 B
Plaintext
package unit.classes;
|
|
|
|
|
|
public class TestClassLoop {
|
|
|
|
public static void testFinally() {
|
|
boolean var0 = Math.random() > 0.0D;
|
|
|
|
while(true) {
|
|
try {
|
|
if(!var0) {
|
|
return;
|
|
}
|
|
} finally {
|
|
System.out.println("1");
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void testFinallyContinue() {
|
|
boolean var0 = Math.random() > 0.0D;
|
|
|
|
while(true) {
|
|
while(true) {
|
|
try {
|
|
System.out.println("1");
|
|
break;
|
|
} finally {
|
|
if(var0) {
|
|
System.out.println("3");
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|
|
System.out.println("4");
|
|
}
|
|
}
|
|
}
|