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