1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/testdata/error.ts
2018-05-30 08:33:55 -04:00

9 lines
76 B
TypeScript

function foo() {
throw Error("bad");
}
function bar() {
foo()
}
bar()