Files
kotlin-fork/compiler/testData/ir/irText/expressions/catchParameterAccess.fir.kt.txt
T
2021-11-01 23:59:59 +03:00

11 lines
127 B
Plaintext
Vendored

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