blob: 0ed27f0f62eca0cdb3127dd6b6bf3db0ec71ce31 [file] [log] [blame]
function test() {
var a,b,c,d;
[a,b] = [c,d] = [1,2];
return a === 1 && b === 2 && c === 1 && d === 2;
}
if (!test())
throw new Error("Test failed");