<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8177</ErrorName>
  <Examples>
    <string>// CS8177: Async methods cannot use by-reference variables
// Line: 12

using System.Threading.Tasks;

class X
{
	int x;

	async Task Test ()
	{
		ref int y = ref x;
		await Task.Yield ();
	}
}</string>
  </Examples>
</ErrorDocumentation>