Files
openide/java/java-tests/testData/codeInsight/moveStatementAction/nonCaseBlockSelection.java
2022-05-13 18:58:38 +00:00

18 lines
429 B
Java

class Test {
void m(int v) {
switch (v) {
case 1:
System.out.println(1);
<selection> break;
<caret> case 2:
System.out.println(2);
break;
case </selection>3:
System.out.println(3);
break;
case 4:
System.out.println(4);
break;
}
}
}