2003-12-29 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / errors / cs0515.cs
1 // cs0515.cs: access modifiers are not allowed on static constructors
2 // Line: 4
3 class X {
4         public static X ()
5         {
6         }
7 }