C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2371
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2371
 
     'identifier' : redefinition; different basic types
 
     The specified identifier was already declared.
 
     The following is an example of this error:
 
          int i;
          int i();    // error
                                    -♦-