summaryrefslogtreecommitdiff
path: root/tests/specs/run/_018_async_catch/018_async_catch.ts
blob: ac43a52e86abc82946916e599982d2690fdacbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function fn(): Promise<never> {
  throw new Error("message");
}
async function call() {
  try {
    console.log("before await fn()");
    await fn();
    console.log("after await fn()");
  } catch (_error) {
    console.log("catch");
  }
  console.log("after try-catch");
}
call().catch(() => console.log("outer catch"));