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

10 lines
113 B
Kotlin
Vendored

fun foo() {
"before"
if (true) {
val a = 1
}
else {
val b = 2
}
"after"
}