mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
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"));
|