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

7 lines
123 B
Plaintext
Vendored

// "Change 'map' to val" "true"
// WITH_RUNTIME
fun test() {
val map = mutableMapOf(1 to 1)
map <caret>+= 2 to 2
}