mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
9 lines
186 B
Java
9 lines
186 B
Java
class A {
|
|
private void A() {
|
|
final int i = 2;
|
|
switch (1) {
|
|
case 1 -> System.out.println(1);
|
|
case i -> System.out.println(3);
|
|
}
|
|
}
|
|
} |