deno/tests/error_002.ts
2019-03-09 12:30:38 -05:00

8 lines
99 B
TypeScript

import { throwsError } from "./subdir/mod1.ts";
function foo(): void {
throwsError();
}
foo();