eol
[mcs.git] / tests / gtest-218.cs
blob73b6cc1baf88fdf6ab7abaf27c06f75db0668fa6
1 public interface IFoo<T> where T : IFoo<T> { }
2 public interface IBaz<T> where T : IFoo<T> { }
4 class Foo : IFoo<Foo>
5 { }
7 class X
9 static void Main ()
10 { }