8 lines
115 B
C#
Raw Permalink Normal View History

// CS0132: `X.X(int)': The static constructor must be parameterless
// Line: 4
class X {
static X (int x)
{
}
}