Files
kotlin-fork/idea/testData/intentions/loopToCallChain/any_indexNeeded.kt
T
2016-08-16 17:38:03 +03:00

11 lines
268 B
Kotlin
Vendored

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