mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
12 lines
213 B
TypeScript
12 lines
213 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");
|
|
}
|
|
}
|