cleol
[mcs.git] / tests / gtest-221.cs
blob44186740e7cb1ce0c61251e5d1f8b078983274e0
1 interface IFoo {}
2 interface IBar {}
4 class C1<IFoo> where IFoo : IBar
8 abstract class C2
10 public abstract C1<T> Hoge<T> (C1<T> c) where T : IBar;
13 class C3 : C2
15 public override C1<T> Hoge<T> (C1<T> c) { return null; }
18 class X
20 static void Main ()
21 { }