mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 01bda01714863b5c174c85350542cb1c49440e42
16 lines
354 B
Java
16 lines
354 B
Java
class Test {
|
|
void test(){
|
|
int x = 55;
|
|
<selection>switch (x){
|
|
case 3:
|
|
System.out.println();
|
|
break;
|
|
case 5:
|
|
System.out.println("atata");
|
|
break;
|
|
default:
|
|
return;
|
|
}</selection>
|
|
System.out.println();
|
|
}
|
|
} |