75c887048e
Test data from compiler/testData/lazyResolve/ was moved to diagnostics tests
15 lines
251 B
Kotlin
15 lines
251 B
Kotlin
// FILE: fileDependencyRecursion.kt
|
|
package test
|
|
|
|
import testOther.some
|
|
|
|
val normal: Int = 1
|
|
val fromImported: Int = some
|
|
|
|
// FILE: fileDependencyRecursionOther.kt
|
|
package testOther
|
|
|
|
import test.normal
|
|
|
|
val some: Int = 1
|
|
val fromImported: Int = normal |