0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/tests/async_error.ts
2019-03-09 12:30:38 -05:00

8 lines
152 B
TypeScript

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