Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
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
);
})();