summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug696039.js
blob: a28e60d3ebb474f535067c78839aa832d8bb7677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Binary: cache/js-dbg-32-67673422f7d2-linux
// Flags: -m -n -a
//

gczeal(2);
var lfcode = new Array();
lfcode.push("");
lfcode.push("");
while (lfcode.length > 0) {
        var file = lfcode.shift();
        loadFile(file);
}
function loadFile(lfVarx) {
        try {
                eval("\
                        Array.prototype[30] = 'B';\
                        delete Array.prototype[30];\
                        assertEquals('edcba', a.join(''));\
                ");
        } catch (lfVare) {}
}