<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0315</ErrorName>
  <Examples>
    <string>// CS0315: The type `ushort' cannot be used as type parameter `T' in the generic type or method `A&lt;T&gt;'. There is no boxing conversion from `ushort' to `A&lt;ushort&gt;.N1&lt;ushort&gt;'
// Line: 9
// Compiler options: -r:CS0315-2-lib.dll

public class Test
{
	public static void Main ()
	{
		A&lt;ushort&gt;.N1&lt;ushort&gt; a = null;
	}
}
</string>
    <string>// CS0315: The type `int' cannot be used as type parameter `U' in the generic type or method `A&lt;int?&gt;.Test&lt;U&gt;()'. There is no boxing conversion from `int' to `int?'
// Line: 19

class A&lt;T&gt;
{
	public static void Test&lt;U&gt; () where U : T
	{
	}
}

class B : A&lt;int?&gt;
{
}

class Program
{
	public static void Main ()
	{
		B.Test&lt;int&gt; ();
	}
}
</string>
    <string>// CS0315: The type `int' cannot be used as type parameter `TEventArgs' in the generic type or method `System.EventHandler&lt;TEventArgs&gt;'. There is no boxing conversion from `int' to `System.EventArgs'
// Line: 5

class X {
	System.EventHandler &lt;int&gt; x;
	static void Main () {}
}


</string>
  </Examples>
</ErrorDocumentation>