summaryrefslogtreecommitdiff
path: root/tests/specs/run/async_error/async_error.ts
blob: b55c73aeb695e04001e6c6997483b80b5ae4cd57 (plain)
1
2
3
4
5
6
7
8
9
console.log("hello");
// deno-lint-ignore require-await
const foo = async (): Promise<never> => {
  console.log("before error");
  throw Error("error");
};

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