2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs1041-2.cs
1 // cs1001: Identifier expected
2 // Line: 6
3
4 class T {
5         // Change (args) to (string args) to fix it
6         public static int Main (args)
7         {
8         }
9 }