4113d06767
#KT-29193 Fixed
8 lines
156 B
Plaintext
Vendored
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") |