Files
kotlin-fork/compiler/testData/codegen/box/ir/anonymousObjectInsideElvis.kt
T
2020-04-10 14:49:27 +03:00

4 lines
71 B
Kotlin
Vendored

fun box(): String {
return (object { val r = "OK" } ?: null)!!.r
}