Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unrollLoop/afterUnrollBreakLast.java
2017-09-12 09:25:51 +07:00

17 lines
475 B
Java

// "Unroll loop" "true"
class Test {
void test(Object y) {
System.out.println((Object) "one");
if (!(Math.random() > 0.5)) {
System.out.println((Object) 1);
if (!(Math.random() > 0.5)) {
System.out.println((Object) 1.0);
if (!(Math.random() > 0.5)) {
System.out.println((Object) 1.0f);
if (!(Math.random() > 0.5)) {
}
}
}
}
}
}