mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
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");
|
|
}
|
|
}
|
|
} |