blob: d80dd5f6a477668093ec425a65ec2df0d207c0e7 [file] [log] [blame]
// "Change type to MutableMap" "true"
// WITH_RUNTIME
fun main() {
val map = foo().toMutableMap()<caret>
map[2] = "b"
}
fun foo() = mapOf(1 to "a")