0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/run/018_async_catch.ts

15 lines
322 B
TypeScript
Raw Normal View History

2020-03-20 09:38:34 -04:00
function fn(): Promise<never> {
2018-10-12 14:22:52 -04:00
throw new Error("message");
}
async function call() {
2018-10-12 14:22:52 -04:00
try {
console.log("before await fn()");
await fn();
console.log("after await fn()");
} catch (_error) {
2018-10-12 14:22:52 -04:00
console.log("catch");
}
console.log("after try-catch");
}
call().catch(() => console.log("outer catch"));