mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 15:53:38 +07:00
GitOrigin-RevId: 7621034db1c5434ab4c0e2c6bbfa18f298ec601f
14 lines
304 B
Java
14 lines
304 B
Java
class Test {
|
|
void test(int x) {
|
|
switch (x){
|
|
<selection>case 1:
|
|
System.out.println(1);
|
|
break;</selection>
|
|
case 2:
|
|
System.out.println();
|
|
return;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
} |