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

6 lines
92 B
Plaintext
Vendored

//WITH_RUNTIME
fun foo(bar: IntArray) {
for ((index, a) in bar.withIndices()) {
}
}