Files
linux-packaging-mono/mcs/errors/cs0132.cs

8 lines
115 B
C#
Raw Normal View History

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