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

6 lines
122 B
Kotlin
Vendored

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