summaryrefslogtreecommitdiff
path: root/test/message/nexttick_throw.js
blob: 49cd6dd0f7cbd67e990ed1b84d1cf559a03d5d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';
require('../common');

process.nextTick(function() {
  process.nextTick(function() {
    process.nextTick(function() {
      process.nextTick(function() {
        // eslint-disable-next-line
        undefined_reference_error_maker;
      });
    });
  });
});