Files
kotlin/compiler/testData/codegen/box/controlStructures/kt2577.kt
2018-06-19 17:09:31 +03:00

13 lines
196 B
Kotlin
Vendored

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