Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
changeToMutableCollection
/
map2.kt.after
blob: d80dd5f6a477668093ec425a65ec2df0d207c0e7 [
file
]
// "Change type to MutableMap" "true"
// WITH_RUNTIME
fun main
()
{
val map
=
foo
().
toMutableMap
()<
caret
>
map
[
2
]
=
"b"
}
fun foo
()
=
mapOf
(
1
to
"a"
)