'use strict';
var assert = require('assert');
var common = require('../common');

var net = require('net');

net.createServer(function(conn) {
  conn.unref();
}).listen(common.PORT).unref();

net.connect(common.PORT, 'localhost').pause();

setTimeout(function() {
  assert.fail(null, null, 'expected to exit');
}, 1000).unref();