Multiple Definition of Identifier

Description

Multiple descriptions of a type (type member) with the same identifier exist within the same namespace.

Troubleshooting Tips

Delete or change all duplicate identifiers.

Example

Sub UsepProc;
Const
    i = 100;
Var
    i: Integer;
Begin
    
End Sub UsepProc;

When the specified code is compiled, the string i: Integer; displays the following error: Multiple definition of identifier. To resolve the error, change identifier of the variable or the constant or delete the block of declaration of constants or variables.

See also:

Compiler Messages