mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
14 lines
147 B
TypeScript
14 lines
147 B
TypeScript
|
function a() {
|
||
|
throw new Error("foo", { cause: new Error("bar", { cause: "deno" }) });
|
||
|
}
|
||
|
|
||
|
function b() {
|
||
|
a();
|
||
|
}
|
||
|
|
||
|
function c() {
|
||
|
b();
|
||
|
}
|
||
|
|
||
|
c();
|