comparison: js/src/jit-test/tests/gc/bug-906236.js
js/src/jit-test/tests/gc/bug-906236.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 // |jit-test| error: too much recursion |
|
2 (function() { |
|
3 (function f(x) { |
|
4 return x * f(x - 1); |
|
5 with({}) |
|
6 var r = "" |
|
7 })() |
|
8 })() |
|
9 |