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

7 lines
85 B
Kotlin

fun foo() {
"before"
do {
var a = 2
} while (a > 0)
"after"
}