EA-38625 Fixed - Part 2 - UOE: NamespaceType.throwException

This commit is contained in:
Natalia.Ukhorskaya
2012-09-14 11:14:00 +04:00
parent 7ad0fd56f3
commit 645b784b40
3 changed files with 9 additions and 2 deletions
@@ -3,8 +3,14 @@ public class Test {
public static final String FOO = "test";
}
// FILE: anotherTest.kt
package foo
val s: String = "test"
// FILE: test.kt
fun ff() {
val a = Test?.FOO
System?.out.println(a)
val b = foo?.s
System?.out.println(a + b)
}