summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0574.cs
blob: ce39657516f0c5ceefc387f0117935822ca4265d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0574: Name of destructor must match name of class
// Line: 6

class X  {

	~Y ()
	{
	}

	static void Main ()
	{
	}
}