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

7 lines
161 B
Kotlin
Vendored

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