summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug488203.js
blob: a24fae3464d46ec70fd8cd7a605b33ed127e3fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// |jit-test| error:InternalError

// Binary: cache/js-dbg-32-756dd46daf6c-linux
// Flags: -j
//
var d = {
  p: function () {
         for (var i = 0; i < 9; ++i);
         with (d) { q(); }
     }
};
d.q = function() { eval('this.p()'); }
d.p();