<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0673</ErrorName>
  <Examples>
    <string>// cs0673.cs: System.Void cannot be used from C#. Use typeof (void) to get the void type object
// Line: 8

public class X
{
	public static void Main()
	{
		System.Type t = typeof (System.Void);
	}
}
</string>
  </Examples>
</ErrorDocumentation>