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

cs0514.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28b365ba8daca2a1a5ad34e41b51290076bc9494 (plain)
1
2
3
4
5
6
7
8
9
// cs0514.cs: `X.X()': static constructor cannot have an explicit `this' or `base' constructor call
// Line: 4
class X {
	static X () : base ()
	{
	}

	static void Main () {}
}