Files
kotlin-fork/idea/testData/intentions/addForLoopIndicesIntention/inapplicableExistingIndices.kt
T

7 lines
129 B
Kotlin
Vendored

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