Files
kotlin/compiler/testData/codegen/box/innerNested/superConstructorCall/objectExtendsClassDefaultArgument.kt
2016-07-21 19:10:42 +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
}