Files
kotlin-fork/compiler/testData/codegen/box/statics/syntheticAccessor.kt
T

13 lines
121 B
Kotlin
Vendored

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