This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs1001.cs
1 //
2 // cs1001: identifier expected
3 // Line: 8
4
5 class T {
6
7         // Change (args) to (string args) to fix it
8         public static int Main (args)
9         {
10         }
11 }