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

9 lines
150 B
Kotlin
Vendored

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