mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
10 lines
219 B
Java
10 lines
219 B
Java
// "Remove switch branch 'null'" "true-preview"
|
|
class Main {
|
|
void test(Integer i) {
|
|
switch (i) {
|
|
case 1, null, 2:
|
|
System.out.println("A");
|
|
break;
|
|
}
|
|
}
|
|
} |