* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs0666.cs
1 // cs0666: member declaration in struct class
2 // Line: 4
3 struct X {
4         protected int A;
5
6         static void Main ()
7         {
8         }
9 }