2021-12-29 19:34:13 +01:00
|
|
|
function a() {
|
2022-03-02 07:44:43 +11:00
|
|
|
// deno-lint-ignore no-explicit-any
|
|
|
|
throw new Error("foo", { cause: new Error("bar", { cause: "deno" as any }) });
|
2021-12-29 19:34:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function b() {
|
|
|
|
a();
|
|
|
|
}
|
|
|
|
|
|
|
|
function c() {
|
|
|
|
b();
|
|
|
|
}
|
|
|
|
|
|
|
|
c();
|