summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug576398.js
blob: 82e2caaab304284ab0c934def668735e554854ce (plain)
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);