blob: 7683ccd8ef3faf214be784e3b933facaac61546c [file] [log] [blame]
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');
}