<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0304</ErrorName>
  <Examples>
    <string>// CS0304: Cannot create an instance of the variable type `T' because it does not have the new() constraint
// Line: 8

public class Foo&lt;T&gt;
{
	public T Create ()
	{
		return new T ();
	}
}

class X
{
	static void Main ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>