summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/basic/testLetWithUnstableGlobal.js
blob: fb7984ce2de964aa8861267429aa60a5f8f288bc (plain)
1
2
3
4
5
6
7
8
9
10
11
var q = [];
for each (b in [0x3FFFFFFF, 0x3FFFFFFF, 0x3FFFFFFF]) {
  for each (let e in [{}, {}, {}, "", {}]) { 
    b = (b | 0x40000000) + 1;
    q.push(b);
  }
}
function testLetWithUnstableGlobal() {
    return q.join(",");
}
assertEq(testLetWithUnstableGlobal(), "2147483648,-1073741823,-1073741822,-1073741821,-1073741820,2147483648,-1073741823,-1073741822,-1073741821,-1073741820,2147483648,-1073741823,-1073741822,-1073741821,-1073741820");