mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 16:21:49 +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);
|
|
}
|
|
}
|
|
} |