diff options
Diffstat (limited to 'cli/tests/testdata/eval/check_local_by_default2.ts')
-rw-r--r-- | cli/tests/testdata/eval/check_local_by_default2.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/eval/check_local_by_default2.ts b/cli/tests/testdata/eval/check_local_by_default2.ts new file mode 100644 index 000000000..5177ff944 --- /dev/null +++ b/cli/tests/testdata/eval/check_local_by_default2.ts @@ -0,0 +1,6 @@ +import * as a from "http://localhost:4545/subdir/type_error.ts"; + +const b: "b" = 12; + +console.log(a.a); +console.log(b); |