Compiler Error C3657
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3657.
destructors cannot explicitly override or be explicitly overridden
Destructors or finalizers cannot be explicitly overridden. For more information, see Explicit Overrides.
The following sample generates C3657.
// C3657.cpp
// compile with: /clr
public ref struct I {
virtual ~I() { }
virtual void a();
};
public ref struct D : I {
virtual ~D() = I::~I {} // C3657
virtual void a() = I::a {} // OK
};
Show: