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

6 lines
81 B
Kotlin
Vendored

//WITH_RUNTIME
fun foo(bar: Iterable<Int>) {
for (<caret>a in bar) {
}
}