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

6 lines
97 B
Plaintext
Vendored

//WITH_RUNTIME
fun foo(bar: Array<Object>) {
for ((index, a) in bar.withIndices()) {
}
}