summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug554675-3.js
blob: b014ce03a1885783d55241b22129f8ad1018ea50 (plain)
1
2
3
4
5
6
7
8
9
10
11
(function() {
  try { (function() {
      for each(let x in [0, /x/, 0, {}]) {
        if (x < x) {}
      }
    })()
  } catch(e) {}
})()

/* Don't assert. */