14 lines
122 B
C#
14 lines
122 B
C#
|
// CS0574: Name of destructor must match name of class
|
||
|
// Line: 6
|
||
|
|
||
|
class X {
|
||
|
|
||
|
~Y ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|