// IGNORE_BACKEND_FIR: JVM_IR // WITH_RUNTIME // KJS_WITH_FULL_RUNTIME import kotlin.test.* fun box(): String { val m = HashMap() m["a"] = "A" m["a"] += "B" assertEquals("AB", m["a"]) return "OK" }