summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/parser/bug-1263881-3.js
blob: 4d3573b6c5c4a99763d51d4e5962b1a92e630a17 (plain)
1
2
3
4
5
6
let s = "function foo() {\n";
let max = 65536;
for (let i = 0; i < max; i++)
  s += "let ns" + i + " = "+ i +";\n";
s += "};";
eval(s);