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