summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1713579.js
blob: d6bb30573c43d87f60b5a54145660e279dbd741f (plain)
1
2
3
4
5
6
7
8
function f() {
  var i = 0;
  while (i < (this.foo = this.foo ^ 123)) {
    this.prop = 1;
  }
}
new f();
f();