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