Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0574.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 666e7cadf30621b8551ae8cd836101980b0512de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0574.cs: Name of destructor must match name of class
// Line: 6

class X  {

	~Y ()
	{
	}

	static void Main ()
	{
	}
}