Files
kotlin-fork/idea/testData/quickfix/changeToMutableCollection/map.kt.after
T
2019-02-11 10:17:51 +03:00

6 lines
129 B
Plaintext
Vendored

// "Change type to MutableMap" "true"
// WITH_RUNTIME
fun main() {
val map = mutableMapOf(1 to "a")<caret>
map[2] = "b"
}