summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0515.cs
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 ()
	{
	}
}