* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0245.cs
1 // cs0245.cs: Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available
2 // Line: 7
3
4 class Sample {
5         void Close ()
6         {
7                 this.Finalize();
8         }
9 }