mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
259 B
Java
13 lines
259 B
Java
class A {
|
|
private void A() {
|
|
switch (1) {
|
|
case 1:
|
|
System.out.println(1);
|
|
break;
|
|
case <selection>2</selection>:
|
|
System.out.println(2);
|
|
break;
|
|
}
|
|
|
|
}
|
|
} |