7 lines
124 B
Plaintext
Vendored
7 lines
124 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: Replace 'add()' with '+='
|
|
fun foo() {
|
|
val a = arrayListOf<Int>(1, 2, 3)
|
|
a += 4
|
|
}
|