summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1813387.js
blob: b6afc9d01abd7ab462e7bb924199259c668e694b (plain)
1
2
3
4
5
6
7
8
9
10
var g = newGlobal();
function foo() {
  try {
    foo();
  } catch {
    g.Reflect.construct(g.Uint8ClampedArray, new g.Int8Array);
  }
}

foo();