summaryrefslogtreecommitdiff
path: root/test/parallel/test-regress-GH-4256.js
blob: 1a4a78b3c0781d6d5c5261ed8f2e10592919cb63 (plain)
1
2
3
4
5
6
'use strict';
require('../common');
process.domain = null;
var timer = setTimeout(function() {
  console.log('this console.log statement should not make node crash');
}, 1);