Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
818bd6cb4df290cb2d46e75c7286d4ae03b4ea2b
/
.
/
test
/
message
/
async_error_sync_esm.mjs
blob: fdb6a260d1284b241814466ae7cae96e0ba90ada [
file
]
import
'../common/index.mjs'
;
import
four
from
'../fixtures/async-error.js'
;
async
function
main
()
{
try
{
await four
();
}
catch
(
e
)
{
console
.
error
(
e
);
}
}
main
();