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

10 lines
91 B
TypeScript

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