blob: 82e2caaab304284ab0c934def668735e554854ce [file] [log] [blame]
function K(x) {
with ({}); // prevent compilation
this.x = x;
}
function f() {
var a = new K(1);
var b = new K(2);
return (a == b);
}
assertEq(f(), false);