// WITH_RUNTIME // INTENTION_TEXT: Replace 'addAll()' with '+=' fun foo() { val a = arrayListOf(1, 2, 3) a.addAll(arrayOf(4, 5, 6)) }