* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs1552.cs
1 //
2 // cs1552.cs: Array type specified, [] must appear before parameter name
3 // Line: 8
4
5 class T {
6         // To fix: change (string args[]) to (string [] args)
7         
8         public static int Main (string args[])
9         {
10         }
11 }