9 lines
139 B
C#
Raw Normal View History

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