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: 3a8f62d2b8da86a198e3bc99284da7e806e90e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1520.cs: Class, struct, or interface method must have a return type
// Line: 8

class test {

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