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