Files
kotlin-fork/compiler/testData/ir/irText/expressions/tryCatch.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

21 lines
260 B
Plaintext
Vendored

fun test1() {
try println()
catch (e: Throwable)println()
finally println()
}
fun test2(): Int {
return try { // BLOCK
println()
42
}
catch (e: Throwable){ // BLOCK
println()
24
}
finally { // BLOCK
println()
555
}
}