Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/kt2577.kt
T
2017-03-13 15:31:46 +03:00

13 lines
196 B
Kotlin

fun foo(): Int {
try {
} finally {
try {
return 1
} catch (e: Throwable) {
return 2
}
}
}
fun box() = if (foo() == 1) "OK" else "Fail"