Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/splitSwitchBranchWithSeveralCaseValues/beforeCaseDefaultLabel.java
2023-07-14 16:14:45 +00:00

13 lines
250 B
Java

// "Copy 'switch' branch" "true-preview"
class C {
void foo(int n) {
String s = "";
switch (n) {
case 1:
<caret>default:
case 2:
s = "x";
break;
}
}
}