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: 86747c11ae8a6b54b861d344fb9c18515b1f1776 (plain)
1
2
3
4
5
6
7
8
9
// cs0514: Static constructor can not have arguments
// Line: 4
class X {
	static X () : base ()
	{
	}

	static void Main () {}
}