15 lines
135 B
C#
Raw Permalink Normal View History

class C <T> where T : new ()
{
}
class D <U> : C<U> where U : struct
{
}
class X
{
public static void Main ()
{
}
}