* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs0519.cs
1 //using System;
2
3 enum System { A }
4
5 class X {
6         static void Main ()
7         {
8                 System s = new System ();
9         }
10 }