// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'filter{}.forEach{}'" // INTENTION_TEXT_2: "Replace with 'asSequence().filter{}.forEach{}'" fun foo(list: List, target: MutableList) { list .asSequence() .filter { it.length > 0 } .forEach { target.add(0) } }