C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2619
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2619
 
     union 'union' : can not have static member variable 'identifier'
 
     The specified union member was declared as static.
 
     A union cannot have a static data member.
 
     The following is an example of this error:
 
          void func()
          {
             union
             {
                static int j; // error, j is static
                int i;        // OK
             };
          }
                                    -♦-