summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug639792.js
blob: 601f047ae15552dbfe7569818e8bf307890d5085 (plain)
1
2
3
4
5
6
7
8
for(var i=0; i<20; i++) {
    function f(){};
    x = -1;
    x = x % 1;
    assertEq(x, -0);
}