mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
earlier we had PsiExpressionList, now it is PsiCaseLabelElementList GitOrigin-RevId: 14b06afe93d631d12048539704cd6e71efc5d4ef
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 1:
|
|
System.out.println("hello");
|
|
break;
|
|
case 2:
|
|
System.out.println("hello");
|
|
break;
|
|
}
|
|
}
|
|
} |