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: b50c35bb7297ad5eedd4e6fb4fd21dbc9dbe4c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0575.cs: Only class types can contain destructor
// Line: 5
struct X  {

	~X ()
	{
	}

	static void Main ()
	{
	}
}

}