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

11 lines
244 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(list: List<String>): Int? {
var index = 0
<caret>for ((i, s) in list.withIndex()) {
val x = s.length * index * i
index++
if (x > 0) return x
}
return null
}