Files
linux-packaging-mono/mcs/errors/cs0574.cs

14 lines
122 B
C#
Raw Normal View History

// CS0574: Name of destructor must match name of class
// Line: 6
class X {
~Y ()
{
}
static void Main ()
{
}
}