mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
13 lines
310 B
Java
Vendored
13 lines
310 B
Java
Vendored
public class UseKotlinConstInSwitch {
|
|
public static void main(int i) {
|
|
switch (i) {
|
|
case a.UseKotlinConstInSwitchKt.i:
|
|
System.out.println("1");
|
|
break;
|
|
default:
|
|
System.out.println("2");
|
|
break;
|
|
}
|
|
}
|
|
}
|