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

cs1001.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b108fb6fb4d7f90d906ba6e6d2ebfa76c9e6781e (plain)
1
2
3
4
5
6
7
8
9
// cs1001: Identifier expected
// Line: 6

class T {
	// Change (args) to (string args) to fix it
	public static int Main (args)
	{
	}
}