summaryrefslogtreecommitdiff
path: root/tests/async_error.ts
blob: 81c983a504ab49a76bdbdf3e2b42d8b6b334f70a (plain)
1
2
3
4
5
6
7
8
console.log("hello");
const foo = async (): Promise<never> => {
  console.log("before error");
  throw Error("error");
};

foo();
console.log("world");