summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug579646.js
blob: d034410f9cce5234b290a18e0d4b82c80706b05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if (typeof gczeal != "function")
    gczeal = function() {}

for (a = 0; a < 9; a++)
    for (b = 0; b < 1; b++)
        for (c = 0; c < 2; c++)
            gczeal();

for each(e in [NaN])
    for (d = 0; d < 1; d++)
        z = 0;

for (w in [0, 0])
    {}

x = 0;

for (e = 0; e < 3; e++)
    for (f = 0; f < 4; f++)
        x = -x

// don't crash