Files
openide/java/java-tests/testData/codeInsight/inlineElseBranch/beforeSimple2.java
T

11 lines
216 B
Java

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