summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/jaeger/bug555152.js
blob: 8796f1249e52ee4007ac33bd9341b9f6b504697b (plain)
1
2
3
4
5
6
7
8
9

(function() {
  for each(let x in [new Boolean(), new Boolean(), /x/, /x/]) {
    while (x % x * /x/) {}
  }
})()

/* Don't crash. */