13 lines
109 B
Plaintext
13 lines
109 B
Plaintext
//FILE:a.kt
|
|
package a
|
|
|
|
// no error is reported
|
|
import b.a
|
|
|
|
fun foo() = a
|
|
|
|
//FILE:b.kt
|
|
package b
|
|
|
|
object a {}
|