Files
kotlin-fork/idea/testData/intentions/replaceAddWithPlusAssign/addToVar.kt
T

8 lines
113 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
var a = arrayListOf<Int>(1, 2, 3)
a.<caret>add(4)
}