[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0250.cs
blob5ce0fffdd8fd3afb3d3fbc406f92694e0dc68ddb
1 // CS0250: Do not directly call your base class Finalize method. It is called automatically from your destructor
2 // Line: 9
4 class BaseClass {
7 class DerivedClass: BaseClass {
8 ~DerivedClass () {
9 base.Finalize ();