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

7 lines
104 B
Kotlin

inline fun test2Inline() = performWithFinally { "OK" }
fun box(): String {
return test2Inline()
}