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

15 lines
262 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
class A {
open inner class Inner(val result: String = "OK", val int: Int)
fun box(): String {
val o = object : Inner(int = 0) {
fun ok() = result
}
return o.ok()
}
}
fun box() = A().box()