summaryrefslogtreecommitdiff
path: root/cli/tests/error_stack.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/error_stack.ts')
-rw-r--r--cli/tests/error_stack.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/error_stack.ts b/cli/tests/error_stack.ts
deleted file mode 100644
index f2125d662..000000000
--- a/cli/tests/error_stack.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-function foo(): never {
- throw new Error("foo");
-}
-
-try {
- foo();
-} catch (e) {
- console.log(e);
- throw e;
-}