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

11 lines
202 B
Java

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