Sign in
webkit
/
WebKit
/
7d815df5a5eb5a0a67d72260d5639681d50d7f66
/
.
/
JSTests
/
stress
/
construct-spread-overwritten-variable-2.js
blob: 4d7976219cdffe2625ce9b5f36592842098527a3 [
file
] [
log
] [
blame
]
//@ runDefault
(
function
(){
var
x
=
42
;
new
x
(...[
x
=
function
(){
}]);
})();