Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
construct-spread-overwritten-variable.js
blob: 0a5b9b0d2ef6927638a78c41a3200d98683b0390 [
file
] [
log
] [
blame
]
//@ runDefault
(
function
(){
var
x
=
42
;
var
a
=
[
1
,
2
,
3
];
new
x
(
x
=
function
(){
},
...
a
);
})();