blob: 6eefdf2289d9184affae5ba759c56f4df7834a92 [file] [log] [blame]
// |jit-test| error: RangeError
function g(a, b, c, d) {}
function f(a, b, c) {
arguments.length = getMaxArgs() + 1;
g.apply(this, arguments);
}f();