summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug621022-1.js
blob: aab5bf90f79bc7585d2cca56e2c5023e9de8537b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function f(x) {
    delete arguments[0];
    undefined != arguments[0];
    undefined == arguments[0];
    undefined != arguments[0];
    undefined === arguments[0];
}

for(var i=0; i<20; i++) {
    f(1);
}

// Don't assert.