1'use strict';
2require('../common');
3
4// This test makes sure clearing timers with
5// objects doesn't throw
6clearImmediate({});
7clearTimeout({});
8clearInterval({});
9