◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2623 union 'union': member 'identifier' has destructor The specified union member was declared with a destructor. A union member is not allowed to have a destructor. The following is an example of this error: class A { ~A(); // A has a destructor }; union U { A a; // error }; -♦-