Files
Kmake/test/es-module/test-require-module-detect-entry-point-aou.js
2026-05-26 23:36:42 -07:00

8 lines
181 B
JavaScript

// Flags: --experimental-require-module --abort-on-uncaught-exception
import { mustCall } from '../common/index.mjs';
const fn = mustCall(() => {
console.log('hello');
});
fn();