You've already forked linux-packaging-mono
16 lines
148 B
C#
16 lines
148 B
C#
![]() |
// May use a constructed type as constraint.
|
||
|
|
||
|
class Test<T>
|
||
|
{ }
|
||
|
|
||
|
class Foo<T>
|
||
|
where T : Test<T>
|
||
|
{ }
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
}
|
||
|
}
|