Compiler Warning (level 3) C4570
Visual Studio 2005
Error Message
'type' : is not explicitly declared as abstract but has abstract functionsA type that contains abstract (Visual C++) functions should itself be marked as abstract.
Example
The following sample generates C4570.
// C4570.cpp
// compile with: /clr /W3 /c
ref struct X { // C4570
// try the following line instead
// ref class X abstract {
virtual void f() abstract;
};