Files
openide/java/java-tests/testData/codeInsight/unwrapElseBranch/beforeBlock3.java
2019-01-22 18:48:18 +01:00

11 lines
224 B
Java

// "Unwrap 'else' branch" "true"
class T {
void f(boolean b) {
if (b)
throw new RuntimeException("When true");
<caret>else {
System.out.println("Otherwise");
}//c1
}
}