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

8 lines
132 B
Kotlin
Vendored

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