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: e9e419d032e00da937bb59cba83ff8372bf91203 (plain)
1
2
3
4
5
6
7
8
9
// CS0161: Not all code paths return a value
// Line: 

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