// WITH_RUNTIME // INTENTION_TEXT: "Replace with '+='" // IS_APPLICABLE_2: false fun foo(list: List, target: MutableList) { for (s in list) { target.add(s) } }