Files
linux-packaging-mono/mcs/tests/gtest-035.cs

16 lines
148 B
C#
Raw Normal View History

// May use a constructed type as constraint.
class Test<T>
{ }
class Foo<T>
where T : Test<T>
{ }
class X
{
public static void Main ()
{
}
}