3d8d92c7d3
- test data files renamed from *.jet to *.kt
13 lines
109 B
Kotlin
13 lines
109 B
Kotlin
//FILE:a.kt
|
|
package a
|
|
|
|
// no error is reported
|
|
import b.a
|
|
|
|
fun foo() = a
|
|
|
|
//FILE:b.kt
|
|
package b
|
|
|
|
object a {}
|