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

6 lines
112 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(bar: String) {
for ((index, a) in bar.withIndex()) {
<caret>print(a)
}
}