Files
kotlin-fork/compiler/testData/codegen/box/innerNested/superConstructorCall/objectExtendsLocalCaptureInSuperCall.kt
T

12 lines
156 B
Kotlin
Vendored

open class A(val s: String)
fun box(): String {
class B {
val result = "OK"
val f = object : A(result) {}.s
}
return B().f
}