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

cs0575.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16d0b7aa49e246e3b2e0a48ed0c96f3a8fd5251a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0575.cs: destructors are only allowed in class types
// Line: 5
struct X  {

	~X ()
	{
	}

	static void Main ()
	{
	}
}