* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[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 }