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

8 lines
141 B
Kotlin
Vendored

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