eol
[mcs.git] / tests / gtest-222.cs
blobf7a8c89666a5c9837420cbec3905da1ef04bc7f7
1 interface IFoo {}
2 interface IBar : IFoo {}
4 class Mona<T> where T : IFoo {}
6 class Test
8 public Mona<K> GetMona<K> () where K : IBar
10 return new Mona<K> ();
13 public static void Main () {}