New test.
[mono.git] / mcs / errors / cs1001.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 }