0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/cli/tests/error_001.ts

9 lines
85 B
TypeScript

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