mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
10 lines
193 B
Java
10 lines
193 B
Java
class A {
|
|
private void A() {
|
|
final int i = 2;
|
|
System.out.println(switch (1) {
|
|
case 1 -> 5;
|
|
case i -> 7;
|
|
default -> 9;
|
|
});
|
|
}
|
|
} |