E0008: let statement cannot declare variables named 'let'
Variables declared with let
cannot be named let
.
To fix this error, name the variable something other than let
, or declare the
variable with var
:
Introduced in quick-lint-js version 0.2.0.