comparison: js/src/jit-test/tests/gc/bug-906236.js
js/src/jit-test/tests/gc/bug-906236.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
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 |