mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
9 lines
76 B
TypeScript
9 lines
76 B
TypeScript
function foo() {
|
|
throw Error("bad");
|
|
}
|
|
|
|
function bar() {
|
|
foo()
|
|
}
|
|
|
|
bar()
|