summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1404636.js
blob: c0652578abb825d2f3acb11b1d7ba64009eeb067 (plain)
1
2
3
4
5
6
x = new Uint32Array(4);
try {
    Math.max(Uint32Array.prototype)();
} catch (e) {}
x[3] = -1;
assertEq(x.toString(), "0,0,0,4294967295");