mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 14:20:55 +07:00
10 lines
221 B
Java
10 lines
221 B
Java
// "Split values of 'switch' branch" "true-preview"
|
|
class C {
|
|
void test(int i) {
|
|
switch (i) {
|
|
case 1, <caret>2:
|
|
System.out.println("hello");
|
|
break;
|
|
}
|
|
}
|
|
} |