Updated with review feedback.
[mono.git] / mcs / errors / cs0575.cs
1 // CS0575: Only class types can contain destructor
2 // Line: 10
3
4 struct X
5 {
6         ~X ()
7         {
8         }
9
10         static void Main ()
11         {
12         }
13 }