Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/constructor/kt2852.kt
T
2018-06-28 12:26:41 +02:00

8 lines
146 B
Kotlin
Vendored

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