mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
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();
|
|
}
|
|
} |