js/src/jit-test/tests/basic/testOverRecursed1.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:7cc6613cd48d
1 // |jit-test| error:InternalError
2
3 var a = [];
4 var f = a.forEach.bind(a);
5 a.push(f);
6 f(f);

mercurial