0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00
deno/tests/async_error.ts

10 lines
136 B
TypeScript
Raw Normal View History

2018-08-10 15:16:41 -04:00
console.log("hello");
const foo = async () => {
console.log("before error");
throw Error("error");
}
foo();
console.log("world");