Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/deleteSwitchLabel/beforeDeleteWhenOtherIsAlwaysTrue.java

16 lines
362 B
Java

// "Remove switch label '"two"'" "true"
class Main {
static void fff() {
switch ("one") {
case "one":
System.out.println("one");
case "<caret>two": // quick-fix removes body as well
System.out.println("two");
}
}
public static void main(String[] args) {
fff();
}
}