Files
kotlin/compiler/testData/codegen/box/defaultArguments/constructor/kt2852.kt
2018-08-09 14:22:51 +03:00

7 lines
120 B
Kotlin
Vendored

fun box(): String {
val o = object {
inner class A(val value: String = "OK")
}
return o.A().value
}