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