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

try {
  foo();
} catch (error) {
  console.log(error.stack);
  throw error;
}