Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0106-5.cs
1 // CS0106: The modifier `public' is not valid for this item
2 // Line: 6
3
4 class C
5 {
6         public ~C ()
7         {
8         }
9 }