4113d06767
#KT-29193 Fixed
8 lines
141 B
Kotlin
Vendored
8 lines
141 B
Kotlin
Vendored
// "Change type to MutableMap" "true"
|
|
// WITH_RUNTIME
|
|
fun main() {
|
|
val map = foo()
|
|
map[2<caret>] = "b"
|
|
}
|
|
|
|
fun foo() = mapOf(1 to "a") |