[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1552.cs
1 // CS1552: Array type specifier, [], must appear before parameter name
2 // Line: 6
3
4 class T {
5         // To fix: change (string args[]) to (string [] args)
6         public static int Main (string args[])
7         {
8             return 0;
9         }
10 }