blob: 90a38683a3c34a7026e38ea065b626d9b0acb0b2 [file] [log] [blame]
SyntaxError: Cannot declare a var variable that shadows a let/const/class variable: 'x'.
var x
undefined
let y
var y
undefined
let x
undefined