Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
destructuring_chained_iterable_destructuring.js
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"
);