07/05/14 14:52:48
Compiler Error C2262'identifier' : cannot be destroyed
URLリンク(msdn2.microsoft.com)(vs.71).aspx
The object cannot be instantiated because the appropriate destructor,
though defined, is not accessible.
The following sample generates C2262:
// C2262.cpp
class B
{
~B();
};
class D : public B {};
D d; // C2262, B's destructor is private