◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2086 'identifier' : redefinition The given identifier was defined more than once, or a subsequent declaration differed from a previous one. The following are ways to cause this error: int a; char a; main() { } main() { int a; int a; } However, the following does not cause this error: int a; int a; main() { } -♦-