Files
kotlin/compiler/testData/codegen/box/package/privateMembersInImportList.kt
2019-11-19 11:00:09 +03:00

41 lines
459 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
package test
import test.C.E1
import test.A.B.*
import test.Obj.CInObj.Tt
import test.Obj.foo
private enum class C {
E1
}
class A {
private class B {
object C
class D
}
fun test() {
C
D()
}
}
private object Obj {
private class CInObj {
class Tt
}
fun foo() {
Tt()
}
}
fun box(): String {
E1
A().test()
foo()
return "OK"
}