summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug600139.js
blob: f751f397b5448da127654d0f99eb59e37c4202ce (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| error: ReferenceError
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);