michael@0: // don't crash michael@0: michael@0: function foo(x) { michael@0: (x >>> 3.14); michael@0: (x >>> true); michael@0: (x >>> (0/0)); michael@0: (x >>> 100); michael@0: (x >>> -10); michael@0: (x >>> (1/0)); michael@0: (x >>> (void 0)); michael@0: } michael@0: foo(10);