1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/testdata/async_error.ts

10 lines
136 B
TypeScript
Raw Normal View History

2018-05-26 21:55:08 -04:00
console.log("hello");
const foo = async () => {
console.log("before error");
throw Error("error");
}
foo();
console.log("world");