error messages review
[mono.git] / mcs / errors / cs0515.cs
1 // cs0515.cs: `X.X()': access modifiers are not allowed on static constructors
2 // Line: 4
3 class X {
4         public static X ()
5         {
6         }
7 }