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

7 lines
124 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: Replace 'add()' with '+='
fun foo() {
val a = arrayListOf<Int>(1, 2, 3)
a += 4
}