<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1988</ErrorName>
  <Examples>
    <string>// CS1988: Async methods cannot have ref or out parameters
// Line: 12

using System;

class C
{
	delegate void D (ref int i);
	
	public static void Main ()
	{
		D d = async delegate { };
	}
}
</string>
    <string>// CS1988: Async methods cannot have ref or out parameters
// Line: 6

class C
{
	public async void Test (ref int arg)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>