Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/splitSwitchBranchWithSeveralCaseValues/afterMultiValueLabelFirstWithComments.java

17 lines
384 B
Java

// "Split values of 'switch' branch" "true"
class C {
void test(int i) {
switch (i) {
// 1
case /*2*/ /*3*/2: // 4
// 5
System.out.println("hello");
break;
case 1:
// 5
System.out.println("hello");
break;
/*6*/
}
}
}