Compiler Error C2623
Visual Studio 2012
member 'identifier' of union 'union' has destructor
A union member cannot have a destructor.
The following sample generates C2623:
// C2623.cpp
class A {
~A(); // A has a destructor
};
union U {
A a; // C2623
};