summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug799185-5.js
blob: ba54359818655de823e90ea02c12e59019fca99e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function foo(aObject)
{
    try {
        try {
            if (!aObject)
                return;
        }
        catch (ex) {
            if (ex.name != "TypeError")
                throw ex;
        }
        finally {
        }
        undefined.x;
    }
    catch (ex) {
        if (ex.name != "TypeError")
            throw ex;
        if (ex.name != "TypeError")
            throw ex;
    }
    finally {
    }
}

foo(true);