• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2require('../common');
3
4// Regression test for https://github.com/nodejs/node/issues/30581
5// This script should not crash.
6
7function dummy() {}
8process.on('SIGINT', dummy);
9process.on('exit', () => process.removeListener('SIGINT', dummy));
10