summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/bug1490638.js
blob: ce81629150b1aff3893b1ca2a9845f9849470675 (plain)
1
2
3
4
5
6
7
8
// |jit-test| allow-overrecursed; skip-if: helperThreadCount() === 0

evalInWorker(`
  function f() {
    f.apply([], new Array(20000));
  }
  f()
`);