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