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
Remarks
The identifier was redefined as a typedef.
Example
The following example generates C2378:
// C2378.cpp
// compile with: /c
int i;
typedef int i; // C2378
typedef int b; // OK