summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug735313.js
blob: fe57887fcc734dfcbdfa80ef12e414b5c581032b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// |jit-test| slow; allow-oom;

// Binary: cache/js-dbg-64-dfcb11712ec2-linux
// Flags:
//

a=[];
for (var i=0; i<10; i++) {
  a[a.length] = a;
}
try {
  for (var i=0; i<26; i++) {
    a[a.length] = a.toString();
  }
} catch(exc1) {}