mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
14 lines
304 B
Java
14 lines
304 B
Java
class Test {
|
|
void test(int x) {
|
|
switch (x){
|
|
case 1:
|
|
<selection>System.out.println(1);
|
|
break;
|
|
case 2:
|
|
System.out.println();
|
|
return;</selection>
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
} |