mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
13 lines
191 B
Java
13 lines
191 B
Java
class A {
|
|
void test(int x) {
|
|
switch (x) {
|
|
<selection>case 0:
|
|
case 1:
|
|
case 2:</selection>
|
|
case 3:
|
|
System.out.println("hello");
|
|
default:
|
|
}
|
|
}
|
|
}
|