testOverRecursed1.js (91B)
1 // |jit-test| error:InternalError 2 3 var a = []; 4 var f = a.forEach.bind(a); 5 a.push(f); 6 f(f);