Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
changeToMutableCollection
/
map.kt
blob: 16bc238df97556d9d9251b1a601f58efe288658d [
file
] [
log
] [
blame
]
// "Change type to MutableMap" "true"
// WITH_RUNTIME
fun main
()
{
val map
=
mapOf
(
1
to
"a"
)
map
[
2
<caret>
]
=
"b"
}