Files
kotlin-fork/compiler/testData/codegen/box/statics/syntheticAccessor.kt
T
2019-11-19 11:00:09 +03:00

14 lines
151 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
object A {
private val p = "OK";
object B {
val z = p;
}
}
fun box(): String {
return A.B.z
}