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