Files
kotlin-fork/idea/testData/intentions/removeForLoopIndices/simpleLoopWithIndicesOverCharSequence.kt.after
T
2015-12-14 04:29:21 +03:00

6 lines
74 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(bar: CharSequence) {
for (a in bar) {
}
}