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: d2516110a3e69210fe73c27fd5f78775e10a2252 (plain)
1
2
3
4
5
6
7
8
9
// cs0161.cs: `A.Main()': not all code paths return a value
// Line: 

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