Files
2020-12-21 10:51:36 +00:00

11 lines
225 B
Java

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