<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0161</ErrorName>
  <Examples>
    <string>// CS0161: `Test.Main()': not all code paths return a value
// Line: 4
class Test {
	static int Main () {
		bool b = false;
		while (true) {
			if (b)
				break;
			else
				break;
		}
	}
}

</string>
    <string>// CS0161: `A.Test()': not all code paths return a value
// Line: 8

using System.Threading.Tasks;

class A
{
	static async Task&lt;string&gt; Test ()
	{
		await CallAsync ();
	}
	
	static Task&lt;string&gt; CallAsync ()
	{
		return null;
	}
}
</string>
    <string>// CS0161: `A.Main()': not all code paths return a value
// Line: 6

class A
{
	public static int Main () 
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>