blob: 6f3f168e81e43adceb279d6a2a22fa271aaf5102 [file]
fun test(f: Function0<Unit>) {
return try { // BLOCK
f.invoke()
}
catch (e: Exception){ // BLOCK
throw e
}
}