|
C1010: Identifier redefinition |
Top Previous Next |
Description:
This error occurs when attempting to re-use an identifier that is already used (and thus, cannot be reused in the current scope) in a definition or a declaration (of an enumeration type, a constant, a variable or a function).
Example:
dim x as string sub x ' error C1010: redefinition of identifier 'x' … end sub
|
See Also