Files
openide/java/java-tests/testData/codeInsight/unwrapElseBranch/afterLabeled1.java

15 lines
349 B
Java

// "Unwrap 'else' branch (changes semantics)" "true"
class T {
void f(boolean a, boolean b) {
if (a) {
Label:
{
if (b)
System.out.println("When true");
throw new RuntimeException("Otherwise");
}
}
System.out.println("Done");
}
}