bug_OS_2299723.baseline 157 B

12345
  1. eval('var x = 5') threw 'Let/Const redeclaration'
  2. x: 5
  3. eval('var y = 5') threw 'Let/Const redeclaration'
  4. eval('y = 5') threw 'Assignment to const'
  5. y: 1