// WITH_RUNTIME // INTENTION_TEXT: "Replace with 'filterIndexed{}.any()'" // INTENTION_TEXT_2: "Replace with 'asSequence().filterIndexed{}.any()'" fun foo(list: List) { val found = list .filterIndexed { index, s -> s.length > index } .any() }