Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-129.cs
1 namespace B
2 {
3         using C;
4
5         partial class Test <T>
6                 where T : IA, IB
7         { }
8 }
9
10 namespace B
11 {
12         partial class Test <T>
13                 where T : C.IB, C.IA
14         { }
15 }
16
17 namespace B
18 {
19         partial class Test <T>
20         { }
21 }
22
23 class X
24 {
25         public static void Main ()
26         { }
27 }
28
29 namespace C {
30         interface IA { }
31         interface IB { }
32 }