// CS0132: `X.X(int)': The static constructor must be parameterless
// Line: 5
class X {
    static int ii = 55;
	static X (int x)
	{
	}
}