C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2011
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2011
 
     'identifier' : 'type' type redefinition
 
     The specified identifier was already defined as type <type>.
 
     The following is an example of this error:
 
          struct S;
          union S;    // error
                                    -♦-