deno/tests/018_async_catch.ts
2019-03-09 12:30:38 -05:00

15 lines
342 B
TypeScript

async function fn(): Promise<never> {
throw new Error("message");
}
async function call(): Promise<void> {
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"));