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