Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/iterable.kt
T
2015-07-21 14:59:08 +03:00

6 lines
82 B
Kotlin
Vendored

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