Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 // |jit-test| error: RangeError
2 function g(a, b, c, d) {}
3 function f(a, b, c) {
4 arguments.length = getMaxArgs() + 1;
5 g.apply(this, arguments);
6 }f();