Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/constructor/kt2852.kt
T
2019-11-19 11:00:09 +03:00

8 lines
150 B
Kotlin
Vendored

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