summaryrefslogtreecommitdiff
path: root/tests/error_001.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/error_001.ts')
-rw-r--r--tests/error_001.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/error_001.ts b/tests/error_001.ts
deleted file mode 100644
index f06f80cb4..000000000
--- a/tests/error_001.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-function foo(): never {
- throw Error("bad");
-}
-
-function bar(): void {
- foo();
-}
-
-bar();