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

cs0515.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a3de5f7799c6c87ef102e0686dcabd5a3b05218 (plain)
1
2
3
4
5
6
7
8
// CS0515: `X.X()': static constructor cannot have an access modifier
// Line: 5

class X {
	public static X ()
	{
	}
}