Files
kotlin/compiler/testData/codegen/box/innerNested/superConstructorCall/objectExtendsLocalCaptureInSuperCall.kt
2016-07-21 19:10:42 +03:00

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
}