Compiler Error C3080

'finalizer_function' : a finalizer cannot have a storage-class-specifier

For more information, see Destructors and Finalizers in Visual C++.

Example

The following sample generates C3080.

// C3080.cpp
// compile with: /clr /c
ref struct rs {
protected:
   static !rs(){}   // C3080
   !rs(){}   // OK
};