Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-517.cs
1 public interface I : IA
2 {
3 }
4
5 public interface IA
6 {
7 }
8
9 public class C
10 {
11 }
12
13 public class G<T> where T : C, I
14 {
15 }
16
17 class Test<U> where U : C , I
18 {
19         G<U> field;
20 }
21
22 class M
23 {
24         public static void Main ()
25         {
26         }
27 }