Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/deleteSwitchLabel/afterFixAll.java
Tagir Valeev 6ffb7e417e [java-dfa] Extract "Constant conditions" into separate "Constant values" inspection (IDEA-58235)
GitOrigin-RevId: 95a81fcd1546afec31afc2a044a9ba5fa1337411
2022-09-08 21:30:59 +00:00

10 lines
211 B
Java

// "Fix all 'Nullability and data flow problems' problems in file" "true"
class Main {
void t() {
int i = 5;
switch(i) {
// Apply 'Fix all problems in the file'
}
}
}