summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1703817.js
blob: d495e06e5bad32565186c745704d513e4d27b7f6 (plain)
1
2
3
4
5
6
7
8
9
function foo() {
  new Float64Array(0x40000001)()
}

for (var i = 0; i < 100; i++) {
  try {
    foo();
  } catch {}
}