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

function bar() {
  foo();
}

bar();