deno/tests/error_001.ts

10 lines
91 B
TypeScript
Raw Normal View History

function foo(): never {
2018-08-10 17:38:57 +00:00
throw Error("bad");
}
function bar(): void {
2018-08-16 15:28:02 +00:00
foo();
2018-08-10 17:38:57 +00:00
}
2018-08-16 15:28:02 +00:00
bar();