9 lines
120 B
C#
Raw Normal View History

// CS0515: `X.X()': static constructor cannot have an access modifier
// Line: 5
class X {
public static X ()
{
}
}