Files
hakorune/apps/tests/try_catch_finally_no_throw.nyash

15 lines
283 B
Plaintext

static box Main {
main(args) {
local console = new ConsoleBox()
try {
console.println("T")
return 10
} catch (Error e) {
// 例外なし → ここは通らない想定
console.println("C")
} cleanup {
console.println("F")
}
}
}