Files
kotlin-fork/compiler/testData/codegen/box/operatorConventions/plusAssignWithComplexRHS.kt
T
2020-09-11 12:13:33 +03:00

10 lines
175 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
var map: Map<Any, Set<Any>> = emptyMap()
fun box(): String {
map += "OK" to emptySet()
return map.keys.first().toString()
}