summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug583158.js
blob: 6d8c124487d5bcf2f13d0bc785f6cea3802723fe (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| error: ReferenceError
function g() {
  var rv = (function() {
    this << 1
  })()
  if (a) (function() {})
}
g()