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