4113d06767
#KT-29193 Fixed
6 lines
122 B
Kotlin
Vendored
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"
|
|
} |