blob: 67d10670447fd6e540bbb89b7174998c80c7a361 [file] [log] [blame]
// |jit-test| error: TypeError
//
// Make sure we can recover missing arguments even when it gets assigned to
// another slot.
load(libdir + "evalInFrame.js");
function h() {
evalInFrame(1, "a.push(0)");
}
function f() {
var a = arguments;
h();
}
f();