1 2 3 4 5 6 7 8 9 10
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);