mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
// test_output! E: Error{"message":"teraboom"}
|
|
|
|
export default function () {
|
|
try {
|
|
throw new Error("boom");
|
|
} catch {
|
|
throw new Error("megaboom");
|
|
} finally {
|
|
throw new Error("teraboom");
|
|
}
|
|
}
|