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

12 lines
298 B
Java

// "Fix all 'Constant conditions & exceptions' problems in file" "true"
class Main {
void t() {
int i = 5;
switch(i) {
case <caret>1: case 3: // Apply 'Fix all problems in the file'
System.out.println("odd");
break;
}
}
}