Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt3442.kt
T
2015-03-04 17:41:27 +01:00

7 lines
191 B
Kotlin
Vendored

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