summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug600139.js
blob: 61fa7283a03afcbb6ebfd072603a3efacba8160c (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| error: ReferenceError
// vim: set ts=8 sts=4 et sw=4 tw=99:
function f(a, b, c) {
    if (!a.__SSi) {
        throw Components.returnCode = Cr.NS_ERROR_INVALID_ARG;
    }
    this.restoreWindow(a, b, c);
    eval();
}
f(1, 2, 3);