Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/inapplicableExistingIndices.kt
T
2015-07-21 14:59:08 +03:00

7 lines
128 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun b(c: List<String>) {
for ((<caret>indexVariable, d) in c.withIndex()) {
}
}