summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/repl
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/repl')
-rw-r--r--cli/tests/testdata/repl/import_type.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/tests/testdata/repl/import_type.ts b/cli/tests/testdata/repl/import_type.ts
deleted file mode 100644
index 851ebad86..000000000
--- a/cli/tests/testdata/repl/import_type.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import { type B, create } from "./subdir/export_types.ts";
-
-const b: B = create();
-
-console.log(b);