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

10 lines
234 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'lastIndexOf()'"
fun foo(list: List<String>) {
var result = -1
<caret>for ((index, s) in list.withIndex()) {
if (s == "a") {
result = index
}
}
}