8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
|
|
// Flags: --experimental-require-module
|
||
|
|
|
||
|
|
import { mustCall } from '../common/index.mjs';
|
||
|
|
const fn = mustCall(() => {
|
||
|
|
console.log('hello');
|
||
|
|
});
|
||
|
|
fn();
|