blob: ef976df5858da4653d70c35090491d6c74395726 [file] [log] [blame]
with({}) {
function f() {
this.foo = "bar";
}
o = new f();
assertEq(o.foo, "bar");
}