Files
kotlin-fork/idea/testData/quickfix/changeToMutableCollection/list2.kt
T
2019-02-11 10:17:51 +03:00

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)