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: 1b88bf0173f2bbe4b46b9067fd86776a13a14662 (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 ()
	{
	}
}