// CS0315: The type `int' cannot be used as type parameter `U' in the generic type or method `A.Test()'. There is no boxing conversion from `int' to `int?' // Line: 19 class A { public static void Test () where U : T { } } class B : A { } class Program { public static void Main () { B.Test (); } }