Files
kotlin/compiler/testData/codegen/box/innerNested/superConstructorCall/objectExtendsClassDefaultArgument.kt
2018-06-28 12:26:41 +02:00

11 lines
153 B
Kotlin
Vendored

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