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