summaryrefslogtreecommitdiff
path: root/tests/testdata/error_cause_recursive_tail.ts
blob: 51e7fa6d92398f4e8221cb310ed01efac5aef176 (plain)
1
2
3
4
5
const foo = new Error("foo");
const bar = new Error("bar", { cause: foo });
const baz = new Error("baz", { cause: bar });
foo.cause = bar;
throw baz;