Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-222.cs
1 interface IFoo {}
2 interface IBar : IFoo {}
3
4 class Mona<T> where T : IFoo {}
5
6 class Test
7 {
8         public Mona<K> GetMona<K> () where K : IBar
9         {
10                 return new Mona<K> ();
11         }
12
13         public static void Main () {}
14 }
15
16