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

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ef74f52f7753
1 try {
2 // On X64 this was crashing rather than causing a "too much recursion" exception.
3 x = /x/;
4 (function f() {
5 x.r = x;
6 return f()
7 })();
8 } catch (e) {}
9

mercurial