1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-16 10:54:14 -05:00
denoland-deno/cli/tests/error_001.ts

10 lines
91 B
TypeScript
Raw Normal View History

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