cs0574.cs 126 B

12345678910111213
  1. // cs0574.cs: Name of destructor must match name of class:
  2. // Line: 6
  3. class X {
  4. ~Y ()
  5. {
  6. }
  7. static void Main ()
  8. {
  9. }
  10. }