Sign in
◑
Theme
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2026-02-24
/
.
/
test
/
es-module
/
test-require-module-detect-entry-point.js
blob: 253fe06fdb7a3d26ba5c51803c1a9d85bcea8985 [
file
] [
edit
]
// Flags: --experimental-require-module
import
{
mustCall
}
from
'../common/index.mjs'
;
const
fn
=
mustCall
(()
=>
{
console
.
log
(
'hello'
);
});
fn
();