blob: 697550e6c29cc83b0633afaf36f12f952afd6255 [file] [log] [blame] [edit]
(function() {
var arr = [1, 2];
var c = 0;
for (var i = 0; i < 1e7; i++) {
var [a, b] = arr;
c += a + b;
}
if (c !== 3e7)
throw new Error("Bad value!");
})();