Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
changeToMutableCollection
/
map2.kt.after
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"
)