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

21 lines
414 B
Java

// "Copy 'switch' branch" "true"
class C {
void foo(int n) {
String s = "";
switch (n) {
// 3
case 2: // 4
// 5
s = "x"; // 6
// 7
break; // 8
// 1
case 1: // 2
// 5
s = "x"; // 6
// 7
break; // 8
//9
}
}
}