Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Error C2623

member 'identifier' of union 'union' has destructor

A union member cannot have a destructor.

Example

// C2623.cpp
class A
{
   ~A();    // A has a destructor
};
union U
{
   A a;     // C2623
};
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.