Compiler Error C2086 (Windows CE 5.0)

Send Feedback

'identifier' : redefinition

The identifier is defined more than once, or a subsequent declaration differs from a previous one.

The following example shows ways this error might occur.s

int a;
char a;
main()
{
}
main()
{
  int a;
  int a;
}

// The following example is an error in C++, but not in ANSI C:

int a;
int a;
main()
{
}

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.