summaryrefslogtreecommitdiff
path: root/tests/testdata/run/error_missing_module_named_import.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/error_missing_module_named_import.ts')
-rw-r--r--tests/testdata/run/error_missing_module_named_import.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/testdata/run/error_missing_module_named_import.ts b/tests/testdata/run/error_missing_module_named_import.ts
new file mode 100644
index 000000000..9eb5239ff
--- /dev/null
+++ b/tests/testdata/run/error_missing_module_named_import.ts
@@ -0,0 +1,3 @@
+import { a } from "./does_not_exist.js";
+
+console.log(a);