1'use strict'; 2 3const common = require('../common'); 4 5// This immediate should not execute as it was unrefed 6// and nothing else is keeping the event loop alive 7setImmediate(() => { 8 setImmediate(common.mustNotCall()).unref(); 9}); 10