blob: e599681becc1abd08c4859e957464f6dfb5fd6bf [file] [log] [blame]
rmorisset@apple.com0013fa72018-04-25 23:32:58 +00001"use strict";
2function f(...v) {
3 return g(v);
4}
5function g() {
6 return h();
7}
8function h() {
9}
10
11for (let i = 0; i < 10000; ++i) {
12 f(0);
13 f(0, 0);
14}
15
16Object.defineProperty(Array.prototype, "42", {});