<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0127</ErrorName>
  <Examples>
    <string>// CS0127: `C.GetValue()': A return keyword must not be followed by any expression when method returns void
// Line: 11

using System;
using System.Threading.Tasks;

class C
{
	public async void GetValue()
	{
		return await Task.FromResult(100);
	}
}
</string>
    <string>// CS0127: `System.Action': A return keyword must not be followed by any expression when delegate returns void
// Line: 10

using System;

class C
{
	public void Test ()
	{
		Action a = () =&gt; { return Skip (); };
	}
	
	void Skip ()
	{
	}
}
</string>
    <string>// CS0127: `D': A return keyword must not be followed by any expression when delegate returns void
// Line: 9

delegate void D (int x);

class X {
	static void Main ()
	{
		D d6 = delegate (int x) { return x; }; // Return type mismatch.
	}
}
</string>
    <string>// CS0127: `X.fn()': A return keyword must not be followed by any expression when method returns void
// Line: 6

class X {
	void fn ()
	{
		return 1;
	}
}

</string>
  </Examples>
</ErrorDocumentation>