summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug739901.js
blob: 9bb1e26fbd47db24b62db3e43e8b610b3be839e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Binary: cache/js-dbg-64-940078281bbf-linux
// Flags: --ion-eager
//
function List(l) {
  this.l = l;
}
function f(p) {
  return g(p.l);
};
function g(p) {
  return !(p instanceof List) ? null : f(p.l);
};
list =
  new List(new List(
    new List(new List(
      new List(new List(
        new List(new List(null))))))))
for (let i = 0; i < 99999; i++) {
  g(list);
}