Files
kotlin-fork/compiler/testData/codegen/boxInline/tryCatchFinally/kt5863.2.kt
T
2014-09-26 17:08:58 +04:00

10 lines
225 B
Kotlin
Vendored

inline fun <R> performWithFinally(finally: () -> R) : R {
try {
throw RuntimeException("1")
} catch (e: RuntimeException) {
throw RuntimeException("2")
} finally {
return finally()
}
}