16 lines
174 B
C#
Raw Normal View History

namespace Test
{
public delegate void Handler<TA> (TA sender)
where TA: A<TA>;
public class A<TA>
where TA: A<TA>
{ }
}
class X
{
public static void Main ()
{ }
}