summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0515-2.cs
blob: c45a9ae4f346f0929e7bf4dd9d049d32c9100b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0515: `N.G<T>.G()': static constructor cannot have an access modifier
// Line: 7

namespace N
{
	class G<T> {
		public static G ()
		{
		}
	}
}