Merge pull request #3686 from lambdageek/dev-format-printf
[mono.git] / mcs / errors / cs0574.cs
1 // CS0574: Name of destructor must match name of class
2 // Line: 6
3
4 class X  {
5
6         ~Y ()
7         {
8         }
9
10         static void Main ()
11         {
12         }
13 }