blob: f59c22ee2582f2c7c2e8af132fdc5cc6a1cdc49b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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"));
|