blob: b37369bac7fdf8d195c9bb09f75fddc729a38dc3 (
plain)
1
2
3
4
5
6
7
8
9
|
console.log("hello");
// eslint-disable-next-line require-await
const foo = async (): Promise<never> => {
console.log("before error");
throw Error("error");
};
foo();
console.log("world");
|