1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/run/018_async_catch.ts

14 lines
322 B
TypeScript

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"));