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()