Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1552.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
	}
}