Files
kotlin-fork/compiler/testData/ir/irText/expressions/catchParameterAccess.kt.txt
T
2020-11-26 00:14:11 +03:00

11 lines
119 B
Plaintext
Vendored

fun test(f: Function0<Unit>) {
return try { // BLOCK
f.invoke()
}
catch (...) { // BLOCK
throw e
}
}