// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'filterIndexed{}.any()'" // INTENTION_TEXT_2: "Replace with 'asSequence().filterIndexed{}.any()'" fun foo(list: List) { var found = false for ((index, s) in list.withIndex()) { if (s.length > index) { found = true break } } }