Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt3442.kt
T
2016-01-26 11:49:18 +03:00

7 lines
192 B
Kotlin
Vendored

fun box(): String {
val m = hashMapOf<String, String?>()
m.put("b", null)
val oldValue = m.getOrPut("b", { "Foo" })
return if (oldValue == "Foo") "OK" else "fail: $oldValue"
}