"<name>" is undefined (more references follow); possible misspelling of "<name>"

4
Feb

When the compiler expects a variable, function, or procedure name and no declaration for that name is found anywhere, you get this error. In most cases you either forgot to define the variable or function, or you misspelled the name.

When the compiler knows that there are more than one reference to that same name, it tells you so with the "(more references follow)" extraneous message.

When there is another name that is very close (+/- a few characters) then the GNAT compiler may show you that name as a possible replacement.

0
Your rating: None