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