b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
27 lines
330 B
Kotlin
Vendored
27 lines
330 B
Kotlin
Vendored
fun test1() {
|
|
try { // BLOCK
|
|
println()
|
|
}
|
|
catch (e: Throwable){ // BLOCK
|
|
println()
|
|
}
|
|
finally { // BLOCK
|
|
println()
|
|
}
|
|
}
|
|
|
|
fun test2(): Int {
|
|
return try { // BLOCK
|
|
println()
|
|
42
|
|
}
|
|
catch (e: Throwable){ // BLOCK
|
|
println()
|
|
24
|
|
}
|
|
finally { // BLOCK
|
|
println()
|
|
555 /*~> Unit */
|
|
}
|
|
}
|