Sign in
webkit
/
WebKit
/
1f5bafe5ae87a22fbc029b76fb26b628be327746
/
.
/
JSTests
/
stress
/
construct-overwritten-variable.js
blob: 11e28d9c2f159d86770b451224bed94f34d0340b [
file
] [
log
] [
blame
]
//@ runDefault
(
function
(){
var
x
=
42
;
new
x
(
x
=
function
(){
});
})();