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

11 lines
264 B
Kotlin
Vendored

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