E4001 Names Errors

Names

this variable does not exist; check the spelling or make sure it is declared above this line

When this occurs

Using undeclared variable

Example error message

error[E4001]: identifier not found: 'foo'

How to fix

Declare the variable before using it, or check for typos in the variable name.

Related errors