8c6337f3f6
Used EQ origin to detect. Added a test to check dynamic_var = "bar" case is not affected
9 lines
209 B
Kotlin
Vendored
9 lines
209 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
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"
|
|
}
|