// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'flatMap{}.filterNot{}.mapIndexedTo(){}'" fun foo(list: List, target: MutableCollection) { var i = 0 for (s in list) { for (j in s.indices) { if (j == 10) continue target.add(i + j) i++ } } }