mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
12 lines
280 B
Java
12 lines
280 B
Java
// "Remove switch label '2'" "true-preview"
|
|
class Main {
|
|
void test(Integer i) {
|
|
switch (i) {
|
|
case 1, <caret>2, 3:
|
|
System.out.println("A");
|
|
break;
|
|
case 2:
|
|
System.out.println("B");
|
|
}
|
|
}
|
|
} |