deno/tests/async_error.ts
2019-03-09 12:30:38 -05:00

9 lines
152 B
TypeScript

console.log("hello");
const foo = async (): Promise<never> => {
console.log("before error");
throw Error("error");
};
foo();
console.log("world");