Files
kotlin-fork/compiler/testData/diagnostics/tests/SafeCallOnFakePackage.kt
T
2014-01-14 18:06:50 +04:00

17 lines
250 B
Kotlin

// FILE: Test.java
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
val b = foo?.s
System?.out.println(a + b)
}