Files
kotlin-fork/compiler/testData/cfg-variables/lexicalScopes/forScope.kt
T
2014-03-07 21:08:16 +04:00

7 lines
85 B
Kotlin

fun foo() {
"before"
for (i in 1..10) {
val a = i
}
"after"
}