summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/bigint/bug1679003.js
blob: aee9c0567d4f11e676a6e55d464f6dcd8c8a429a (plain)
1
2
3
4
for (let i = 0, j = 0; i < 100; ++i) {
  let x = (-0xffffffffffffffff_ffffffffffffffffn >> 0x40n);
  assertEq(x, -0x10000000000000000n);
}