11 lines
127 B
Plaintext
Vendored
11 lines
127 B
Plaintext
Vendored
fun test(f: Function0<Unit>) {
|
|
return try { // BLOCK
|
|
f.invoke()
|
|
}
|
|
catch (e: Exception){ // BLOCK
|
|
throw e
|
|
}
|
|
|
|
}
|
|
|