[packaging/msbuild] Update commit hash to point to xplat-master HEAD (#5100)
[mono.git] / mcs / errors / cs0250.cs
1 // CS0250: Do not directly call your base class Finalize method. It is called automatically from your destructor
2 // Line: 9
3
4 class BaseClass {
5 }
6
7 class DerivedClass: BaseClass {
8         ~DerivedClass () {
9                 base.Finalize ();
10         }
11 }
12