summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compile/standalone_error.ts
blob: 27939811385801eae8c9e67570bad6ae7c2c7424 (plain)
1
2
3
4
5
6
7
8
9
function boom() {
  throw new Error("boom!");
}

function foo() {
  boom();
}

foo();