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

10 lines
127 B
Kotlin
Vendored

// KT-3581
open class A(val result: String = "OK") {
}
fun box(): String {
val a = object : A() {}
return a.result
}