mirror of https://github.com/nodejs/node.git
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const neverSettlingDynamicImport = import('never-settle-resolve');
|
||
|
|
||
|
console.log('should be output');
|
||
|
|
||
|
neverSettlingDynamicImport.then(() => process.exit(1));
|