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

6 lines
90 B
Plaintext
Vendored

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