Files
kotlin-fork/compiler/testData/codegen/box/operatorConventions/kt14227.kt
T

14 lines
194 B
Kotlin
Vendored

// WITH_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"
}