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

8 lines
156 B
Plaintext
Vendored

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