You've already forked linux-packaging-mono
16 lines
174 B
C#
16 lines
174 B
C#
![]() |
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 ()
|
||
|
{ }
|
||
|
}
|