Files
kotlin-fork/compiler/testData/cfg/For.jet
T

8 lines
82 B
Plaintext

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