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

cs0161.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1aeff37914806dec38423e89437b98f9b208aa1e (plain)
1
2
3
4
5
6
7
8
9
// CS0161: `A.Main()': not all code paths return a value
// Line: 6

class A
{
	public static int Main () 
	{
	}
}