Compiler Error C2619

union 'union' : cannot have static member variable 'identifier'

A union member is declared static.

The following sample generates C2619

// C2619.cpp
int main() {
   union { static int j; };  // C2619
   union { int j; };  // OK
}