Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/simpleIntList.kt
T
2015-07-21 11:37:19 +03:00

7 lines
90 B
Kotlin
Vendored

// WITH_RUNTIME
fun a() {
val b = listOf(1,2,3,4,5)
for (<caret>c in b) {
}
}