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: 3ffb5c7b0bd5ebad4e24c947f86e7257a39e055c (plain)
1
2
3
4
5
6
7
// cs0515.cs: access modifiers are not allowed on static constructors
// Line: 4
class X {
	public static X ()
	{
	}
}