Files
kotlin-fork/compiler/testData/diagnostics/tests/fileDependencyRecursion.txt
T
Nikolay Krasko 75c887048e Drop AbstractLazyResolveRecursiveComparingTest test
Test data from compiler/testData/lazyResolve/ was moved to diagnostics tests
2014-12-03 14:08:23 +03:00

12 lines
219 B
Plaintext
Vendored

package
package test {
internal val fromImported: kotlin.Int = 1
internal val normal: kotlin.Int = 1
}
package testOther {
internal val fromImported: kotlin.Int = 1
internal val some: kotlin.Int = 1
}