comparison: js/src/jit-test/tests/gc/bug-906241.js
js/src/jit-test/tests/gc/bug-906241.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 // |jit-test| error: InternalError: too much recursion |
|
2 for (let y in []); |
|
3 (function f(x) { |
|
4 new Float64Array(new ArrayBuffer()); |
|
5 { |
|
6 f(x) |
|
7 function t() {} |
|
8 } |
|
9 })(); |