summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug585540.js
blob: 0fae459e02ea7c660618a50e293b6172cde7cdc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
try {
    (function () {
        gczeal(2)()
    })()
} catch (e) {}
(function () {
    for (y in [/x/, Boolean, Boolean, 0, Boolean]) {
        [Math.floor(this)].some(function () {})
    }
})()

/* Don't crash. */