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

foo(true);