Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convertSwitchToIf/beforeClassDeclared.java
2018-10-01 16:31:37 +07:00

13 lines
249 B
Java

// "Replace 'switch' with 'if'" "true"
class X {
void test(int i) {
swi<caret>tch(i) {
case 1:
class Foo{}
System.out.println(new Foo());
break;
case 2:
System.out.println("2"+new Foo());
}
}
}