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

9 lines
184 B
Java

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