Files
kotlin-fork/compiler/testData/cfg/controlStructures/For.kt
T
2014-03-07 21:08:14 +04:00

8 lines
82 B
Kotlin
Vendored

fun t1() {
for (i in 1..2) {
doSmth(i)
}
}
fun doSmth(i: Int) {}