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: d9fa6b29d283c979fde68133a437e0ed6e21ac28 (plain)
1
2
3
4
5
6
7
8
9
10
11
//
// cs1001: identifier expected
// Line: 8

class T {

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