<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0673</ErrorName>
  <Examples>
    <string>// CS0673: System.Void cannot be used from C#. Consider using `void'
// Line: 8

public class X
{
	public static void Main()
	{
		System.Type t = typeof (System.Void);
	}
}
</string>
    <string>// CS0673: System.Void cannot be used from C#. Consider using `void'
// Line: 8

using System;

public class X
{
	public static void Main()
	{
		Void v;
	}
}
</string>
  </Examples>
</ErrorDocumentation>