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