Files
kotlin/compiler/testData/codegen/box/operatorConventions/plusAssignWithComplexRHS.kt
2020-11-09 16:04:43 +03:00

12 lines
250 B
Kotlin
Vendored

// DONT_TARGET_EXACT_BACKEND: WASM
// WASM_MUTE_REASON: STDLIB_COLLECTIONS
// 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()
}