diff options
Diffstat (limited to 'tests/error_002.ts')
-rw-r--r-- | tests/error_002.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/error_002.ts b/tests/error_002.ts new file mode 100644 index 000000000..6aa0fcc3b --- /dev/null +++ b/tests/error_002.ts @@ -0,0 +1,7 @@ +import { throwsError } from "./subdir/mod1.ts"; + +function foo() { + throwsError(); +} + +foo(); |