Files
hakorune/apps/tests/try_catch_finally_no_throw.nyash

15 lines
283 B
Plaintext
Raw Normal View History

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