<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0403</ErrorName>
  <Examples>
    <string>// CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
// Line: 7
class Test&lt;T&gt;
{
	public T Null ()
	{
		return null;
	}
}

class X
{
	static void Main ()
	{ }
}
</string>
    <string>// CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
// Line: 8

struct S
{
	public void Foo&lt;T&gt; () where T : struct
	{
		T t = null;
	}

	static void Main ()
	{ }
}
</string>
    <string>// CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
// Line: 8

class X
{
	public static T CreateMethod&lt;T&gt; ()
	{
		return (T)null;
	}
}
</string>
    <string>// CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
// Line: 8

class Test&lt;T&gt;
{
	public T Null ()
	{
		return (null);
	}
}
</string>
  </Examples>
</ErrorDocumentation>