Files
kotlin/compiler/testData/codegen/box/innerNested/superConstructorCall/objectExtendsClassDefaultArgument.kt
2019-11-19 11:00:09 +03:00

11 lines
157 B
Kotlin
Vendored

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