* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs1526.cs
1 // cs1526: new expression requires () or [] after type
2 // Line: 6
3 class X {
4         static void Main ()
5         {
6                 X x = new X;
7         }
8 }