8 lines
115 B
C#
8 lines
115 B
C#
|
// CS0132: `X.X(int)': The static constructor must be parameterless
|
||
|
// Line: 4
|
||
|
class X {
|
||
|
static X (int x)
|
||
|
{
|
||
|
}
|
||
|
}
|