Files
kotlin/compiler/testData/codegen/box/secondaryConstructors/callFromLocalSubClass.kt

16 lines
215 B
Kotlin
Vendored

fun box(): String {
val z = "K"
open class A(val x: String) {
constructor() : this("O")
val y: String
get() = z
}
class B : A()
val b = B()
return b.x + b.y
}