Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier' : redefinition; symbol cannot be overloaded with a typedef
The identifier was redefined as a typedef
.
The following sample generates C2378:
// C2378.cpp
// compile with: /c
int i;
typedef int i; // C2378
typedef int b; // OK