summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0161.cs
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 () 
	{
	}
}