blob: caef267e1d86ec6711be3182cc7c8a9d253e9ca3 [file] [log] [blame]
// WITH_RUNTIME
// INTENTION_TEXT: Replace 'add()' with '+='
fun foo() {
val a = arrayListOf<Int>(1, 2, 3)
a += 4
}