mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
12 lines
287 B
Java
12 lines
287 B
Java
// "Split values of 'switch' branch" "true-preview"
|
|
class C {
|
|
void test(int i) {
|
|
switch (i) {
|
|
<caret>case 1, 2, 3:
|
|
System.out.println("hello");
|
|
break;
|
|
case 4:
|
|
System.out.println("bye");
|
|
}
|
|
}
|
|
} |