// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'flatMap{}.mapNotNull{}.mapTo(){}'" // INTENTION_TEXT_2: "Replace with 'asSequence().flatMap{}.mapNotNull{}.mapTo(){}'" fun foo(list: List, target: MutableList) { for (s in list) { for (i in s.indices) { val v = bar(i) ?: continue target.add(v.substring(1)) } } } fun bar(p: Int): String? = null