Multiple descriptions of a type (type member) with the same identifier exist within the same namespace.
Delete or change all duplicate identifiers.
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: