2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs0574.cs
1 // cs0574.cs: 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 }