summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug623474.js
blob: bda90883e3051336bd37c49c6b366983484c1fc5 (plain)
1
2
3
4
5
6
7
8
9
10
for (var j=0;j<2;++j) { (function(o){o.length})(String.prototype); }

for each(let y in [Number, Number]) {
    try {
        "".length()
    } catch(e) {}
}

/* Don't crash. */