summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0132-2.cs
blob: 36d0e80220fd5e74a2670ae2028512975c67d027 (plain)
1
2
3
4
5
6
7
8
// CS0132: `X.X(int)': The static constructor must be parameterless
// Line: 5
class X {
    static int ii = 55;
	static X (int x)
	{
	}
}