Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convertSwitchToIf/before3.java

8 lines
122 B
Java

// "Replace 'switch' with 'if'" "false"
class Test {
void foo(float f) {
switch (f<caret>) {
case
}
}
}