Files
kotlin-fork/idea/testData/quickfix/assignOperatorAmbiguity/replaceWithAssignCall/mutableMap.kt.after
T
2018-10-05 15:58:39 +03:00

7 lines
145 B
Plaintext
Vendored

// "Replace with 'plusAssign()' call" "true"
// WITH_RUNTIME
fun test() {
var map = mutableMapOf(1 to 1)
map.plusAssign(2 to 2)<caret>
}