1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/testdata/async_error.ts
2018-05-30 08:33:55 -04:00

9 lines
136 B
TypeScript

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