summaryrefslogtreecommitdiff
path: root/tests/specs/info_tests/json_file/mod1.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/info_tests/json_file/mod1.ts')
-rw-r--r--tests/specs/info_tests/json_file/mod1.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/specs/info_tests/json_file/mod1.ts b/tests/specs/info_tests/json_file/mod1.ts
deleted file mode 100644
index 5e58f432e..000000000
--- a/tests/specs/info_tests/json_file/mod1.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { printHello2, returnsFoo } from "./subdir2/mod2.ts";
-
-export function returnsHi(): string {
- return "Hi";
-}
-
-export function returnsFoo2(): string {
- return returnsFoo();
-}
-
-export function printHello3() {
- printHello2();
-}
-
-export function throwsError() {
- throw Error("exception from mod1");
-}