EA-38625 Fixed - UOE: NamespaceType.throwException

This commit is contained in:
Natalia.Ukhorskaya
2012-09-13 20:04:10 +04:00
parent 6b81ba1aef
commit 6516786979
3 changed files with 15 additions and 1 deletions
@@ -0,0 +1,10 @@
// FILE: Test.java
public class Test {
public static final String FOO = "test";
}
// FILE: test.kt
fun ff() {
val a = Test?.FOO
System?.out.println(a)
}