blob: 9abd44e15e358dbe226fdf8e45a46b37d7988884 [file] [log] [blame]
"use strict"
let theglobal = 0;
for (theglobal = 0; theglobal < 100000; ++theglobal)
;
const foo = (ignored, arg1) => { theglobal = arg1; };
for (let j = 0; j < 10000; ++j) {
const obj = {
[theglobal]: 0,
set hello(ignored) {}
};
foo(obj, 'hello');
}