Got rid of "namespace" word in test data.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// 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)
|
||||
}
|
||||
Reference in New Issue
Block a user