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

12 lines
167 B
C#
Raw Normal View History

public interface IFoo<T> where T : IFoo<T> { }
public interface IBaz<T> where T : IFoo<T> { }
class Foo : IFoo<Foo>
{ }
class X
{
public static void Main ()
{ }
}