0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/error_023_stack_async.ts

12 lines
209 B
TypeScript

const p = (async (): Promise<void> => {
await Promise.resolve().then((): never => {
throw new Error("async");
});
})();
try {
await p;
} catch (error) {
console.log(error.stack);
throw error;
}