Files
openide/java/java-tests/testData/codeInsight/unwrapElseBranch/beforeBlock3.java
T

11 lines
220 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");
}
}
}