summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug643249.js
blob: 86a000228e93bb7f66d417be80a4d1c4ef163b18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    function x() {}
}
for (i = 0; i < 10; i++) {
    _someglobal_ = /a/;
    (function() {
        return function() {
            return _someglobal_
        } ()
    } () == /a/);
    gc();
    try { _someglobal_ = new Function.__lookupSetter__ } catch (e) {}
}