summaryrefslogtreecommitdiff
path: root/cli/tests/error_001.ts
blob: f06f80cb4cb0ae4be0b86f716203a1b3c1de0150 (plain)
1
2
3
4
5
6
7
8
9
function foo(): never {
  throw Error("bad");
}

function bar(): void {
  foo();
}

bar();