diff options
Diffstat (limited to 'tests/testdata/run/error_cause.ts')
-rw-r--r-- | tests/testdata/run/error_cause.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/testdata/run/error_cause.ts b/tests/testdata/run/error_cause.ts deleted file mode 100644 index 385ce2a03..000000000 --- a/tests/testdata/run/error_cause.ts +++ /dev/null @@ -1,14 +0,0 @@ -function a() { - // deno-lint-ignore no-explicit-any - throw new Error("foo", { cause: new Error("bar", { cause: "deno" as any }) }); -} - -function b() { - a(); -} - -function c() { - b(); -} - -c(); |