3748507ac1
+JDK was not very helpful
25 lines
270 B
Plaintext
25 lines
270 B
Plaintext
//FILE:a.kt
|
|
//KT-955 Unable to import a Kotlin package into a Kotlin file with no package header
|
|
|
|
package foo
|
|
|
|
fun f() {}
|
|
|
|
//FILE:b.kt
|
|
|
|
import foo.*
|
|
|
|
val m = f() // unresolved
|
|
|
|
//FILE:c.kt
|
|
|
|
package java.util
|
|
|
|
fun bar() {}
|
|
|
|
//FILE:d.kt
|
|
|
|
import java.util.*
|
|
|
|
val r = bar()
|