1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
denoland-deno/testdata/013_async_throw.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");