mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
14 lines
270 B
Java
14 lines
270 B
Java
class A {
|
|
private void A() {
|
|
final int temp = 2;
|
|
switch (1) {
|
|
case 1:
|
|
System.out.println(1);
|
|
break;
|
|
case temp:
|
|
System.out.println(temp);
|
|
break;
|
|
}
|
|
|
|
}
|
|
} |