Files
kotlin/compiler/testData/codegen/boxMultiFile/packageLocalClassNotImportedWithDefaultImport.kt
Alexander Udalov e0b6f12737 Migrate boxMultiFile and boxMultifileClass tests to new multi-file tests
AbstractCompileKotlinAgainstMultifileKotlinTest is broken in this commit; will
be fixed later
2016-02-27 15:40:03 +03:00

25 lines
238 B
Kotlin
Vendored

// FILE: box.kt
package a
import pack.*
class X : SomeClass()
fun box(): String {
X()
return "OK"
}
// FILE: file1.kt
package kotlin.jvm
private class SomeClass
// FILE: file2.kt
package pack
public open class SomeClass