summaryrefslogtreecommitdiff
path: root/tests/specs/run/error_cause_recursive/error_cause_recursive.ts
blob: a6999b1ff06996c5cd37747af11708459d206543 (plain)
1
2
3
4
const x = new Error("foo");
const y = new Error("bar", { cause: x });
x.cause = y;
throw y;