Files
kotlin/compiler/testData/codegen/objects/thisInConstructor.kt

10 lines
189 B
Kotlin

open class A(open val v: String) {
}
open class B(open val v: String) {
fun a(newv: String) = object: A("fail") {
override val v = this@B.v + newv
}
}
fun box() = B("O").a("K").v