Files
kotlin-fork/compiler/testData/codegen/box/operatorConventions/kt14227.kt
T
2021-10-01 17:18:49 +03:00

15 lines
219 B
Kotlin
Vendored

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