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

7 lines
82 B
Kotlin
Vendored

fun foo() {
"before"
while (true) {
val a: Int
}
"after"
}