deno/tests/018_async_catch.ts
Ryan Dahl 9dfebbc949
Fix eslint warnings (#2151)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
2019-04-21 16:40:10 -04:00

15 lines
348 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((): void => console.log("outer catch"));