Files
kotlin-fork/compiler/testData/codegen/box/boxingOptimization/kt19767_2.kt
T

7 lines
161 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
//WITH_RUNTIME
fun box(): String {
val map: Map<String, Boolean>? = mapOf()
return if (map?.get("") == true) "fail" else "OK"
}