mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
12 lines
257 B
Java
12 lines
257 B
Java
class C {
|
|
void m() {
|
|
switch (0) {
|
|
case 0:
|
|
System.out.println(0);
|
|
break;
|
|
<selection><caret>case 1:</selection>
|
|
System.out.println(1);
|
|
break;
|
|
}
|
|
}
|
|
} |