union 'union' : cannot 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
};
}