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

cs1520.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23dbafd0fcc641a2179709332d083d788caabb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//
// cs1520: Class, struct or interface method must have a return type
// Line: 9

class test {

	// To fix add a return type
	
	public static Main (string[] args)
	{
	}
}