Files
kotlin-fork/idea/testData/resolve/references/arrayAccess/set.kt
T
2020-08-09 12:03:47 +03:00

8 lines
133 B
Kotlin
Vendored

fun a () {
val list = mutableListOf(1)
list<caret>[0] = 1
}
// REF: (in kotlin.collections.MutableList).set(kotlin.Int, E)