mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
8 lines
184 B
Java
8 lines
184 B
Java
class A {
|
|
private void A() {
|
|
switch (1) {
|
|
case 1 -> System.out.println(1);
|
|
case <selection>2</selection> -> System.out.println(3);
|
|
}
|
|
}
|
|
} |