Files
kotlin-fork/idea/testData/inspectionsLocal/selfAssignment/list.kt
T
2017-11-02 11:07:52 +03:00

7 lines
115 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test() {
val list = mutableListOf(1, 2, 3)
list[1] = <caret>list[1]
}