summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1552.cs
blob: 65fd622f7501eefabed1342002b2b4d430e0cf22 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1552: Array type specifier, [], must appear before parameter name
// Line: 6

class T {
	// To fix: change (string args[]) to (string [] args)
	public static int Main (string args[])
	{
            return 0;
	}
}