summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug617433.js
blob: 768f5a41493fdfed815ad0db82bd8662d9ca0479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// don't crash

function foo(x) {
  (x >>> 3.14);
  (x >>> true);
  (x >>> (0/0));
  (x >>> 100);
  (x >>> -10);
  (x >>> (1/0));
  (x >>> (void 0));
}
foo(10);