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

function bar() {
  foo();
}

bar();