mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 13:18:46 +07:00
ddf363e544
GitOrigin-RevId: 294d9dcaa29b1f2f54ce92c5f66b3e0050fd7562
13 lines
291 B
Java
13 lines
291 B
Java
// "Split values of 'switch' branch" "true"
|
|
class C {
|
|
void test(int i) {
|
|
switch (i) {
|
|
case 2:
|
|
System.out.println("hello");
|
|
break;
|
|
case 1:
|
|
System.out.println("hello");
|
|
break;
|
|
}
|
|
}
|
|
} |