Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/constructor/kt2852.kt
T
2018-06-09 19:15:38 +03:00

8 lines
145 B
Kotlin
Vendored

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