<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS4005</ErrorName>
  <Examples>
    <string>// CS4005: Async methods cannot have unsafe parameters
// Line: 11
// Compiler options: -unsafe

class C
{
	unsafe delegate void D (int* i);
	
	public static void Main ()
	{
		D d = async delegate { };
	}
}
</string>
    <string>// CS4005: Async methods cannot have unsafe parameters
// Line: 7
// Compiler options: -unsafe

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