4113d06767
#KT-29193 Fixed
6 lines
131 B
Plaintext
Vendored
6 lines
131 B
Plaintext
Vendored
// "Change type to MutableList" "true"
|
|
// WITH_RUNTIME
|
|
fun main() {
|
|
val list = mutableListOf(1, 2, 3)<caret>
|
|
list[1] = 10
|
|
} |