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: 5a06d1f4313aa64a20b33bcd307c9ee6e2807d77 (plain)
1
2
3
4
5
6
7
8
9
10
// cs1552.cs: 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;
	}
}