mirror of https://github.com/nodejs/node.git
17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
'use strict';
|
|
require('../common');
|
|
|
|
process.on('uncaughtException', function() { });
|
|
|
|
setTimeout(function() {
|
|
process.nextTick(function() {
|
|
var c = setInterval(function() {
|
|
clearInterval(c);
|
|
throw new Error('setInterval');
|
|
});
|
|
});
|
|
setTimeout(function() {
|
|
throw new Error('setTimeout');
|
|
});
|
|
});
|