summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug465272.js
blob: 88a8f064f744cc8800a5ca90e46c8d506e16210d (plain)
1
2
3
4
5
6
function testBug465272() {
    var a = new Array(5);
    for (j=0;j<5;++j) a[j] = "" + ((5) - 2);
    return a.join(",");
}
assertEq(testBug465272(), "3,3,3,3,3");