Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/simpleIntList.kt.after
T
2015-07-21 15:55:57 +03:00

7 lines
111 B
Plaintext
Vendored

// WITH_RUNTIME
fun a() {
val b = listOf(1,2,3,4,5)
for ((index, c) in b.withIndex()) {<caret>
}
}