1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/testdata/008_stack_trace.ts
2018-05-21 17:33:33 -04:00

7 lines
93 B
TypeScript

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