summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/parser/bug-1263355-52.js
blob: 0b0cb4fa21258cf44d1cfff84680bf60f0b0c2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
// |jit-test| error: ReferenceError

(function() {
  if ({}) {}
  else if (x) {}
  else {}
 
  return "" + x;
 
  let x;
})()