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