C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2377
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2377
 
     'identifier' : redefinition; typedef cannot be overloaded with any
     other symbol
 
     The specified typedef identifier was redefined.
 
     The following is an example of this error:
 
          typedef int i;
          int i;  // error
                                    -♦-