// WITH_RUNTIME // INTENTION_TEXT: "Replace with '+= flatMap{}.takeWhile{}'" fun foo(list: List, target: MutableCollection) { Outer@ for (s in list) { for (i in s.indices) { if (i > 1000) break@Outer target.add(i) } } }