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: b64f87bf1c280bae675a61b7abcc3f2c531985b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
//
// cs1552.cs: Array type specified, [] must appear before parameter name
// Line: 8

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