Files
kotlin/compiler/testData/codegen/box/secondaryConstructors/callFromLocalSubClass.kt
2018-08-09 14:22:46 +03:00

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
}