<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1536</ErrorName>
  <Examples>
    <string>// CS1536: Invalid parameter type `void'
// Line: 8

public class Test
{
	public static void Main ()
	{
		object o = (void v) =&gt; 1;
	}
}
</string>
    <string>// CS1536: Invalid parameter type `void'
// Line: 8

using System;

class X
{
	void Test (void a)
	{ }
}
</string>
  </Examples>
</ErrorDocumentation>