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

13 lines
157 B
Kotlin

fun foo() {
"before"
try {
foo()
}
catch (e: Exception) {
val a = e
}
finally {
val a = 1
}
"after"
}