summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0132.cs
blob: 9d4140cd86fff709746204687ae2b7c4cff7faca (plain)
1
2
3
4
5
6
7
// CS0132: `X.X(int)': The static constructor must be parameterless
// Line: 4
class X {
	static X (int x)
	{
	}
}