a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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 ()
|
|
{
|
|
}
|
|
}
|