Files
kotlin-fork/compiler/testData/codegen/box/ir/anonymousObjectInsideElvis.kt
T

4 lines
71 B
Kotlin
Vendored

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