'const val' are now considered constants by Java in IDEA

#KT-12026 Fixed
This commit is contained in:
Pavel V. Talanov
2016-05-23 15:50:57 +03:00
parent 3cb38e7f02
commit 62421bbf7b
5 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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;
}
}
}