summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-906241.js
blob: ccbc73e5944d9fd7b7d96abe49d28aee69cd85c0 (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| error: InternalError: too much recursion
for (let y in []);
(function f(x) {
    new Float64Array(new ArrayBuffer());
    {
        f(x)
        function t() {}
    }
})();