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