The <identifier> Identifier is Used in the <assemblyName1> and <assemblyName2> Assemblies

Description

An assembly connected to the current assembly contains redeclaration of a member (member type) with an existing identifier.

Troubleshooting Tips

Change the identifier of the member (member type) either in the current assembly or in the connected assembly.

Example

Sub Debug;
Begin
    
End Sub Debug;

When the specified code is compiled, the following error is displayed: The Debug identifier is used in the <currentAssembly> and System assemblies. The error occurs because the System system assembly that is always connected by default, already contains the description of the Debug system class. To resolve the error, rename the specified procedure.

See also:

Compiler Messages