Files
kotlin-fork/idea/testData/intentions/removeForLoopIndices/simpleLoopWithIndices.kt
T
2015-07-21 14:59:22 +03:00

6 lines
97 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(bar: List<String>) {
for ((i<caret>,a) in bar.withIndex()) {
}
}