(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1552.cs
blob5a06d1f4313aa64a20b33bcd307c9ee6e2807d77
1 // cs1552.cs: Array type specifier, [], must appear before parameter name
2 // Line: 6
4 class T {
5 // To fix: change (string args[]) to (string [] args)
6 public static int Main (string args[])
8 return 0;