Bump mono-extensions to fix build break (#5677)
[mono.git] / mcs / tests / gtest-619.cs
1 interface I<T>
2 {
3 }
4
5 interface IB<T> : I<string>
6 {
7         
8 }
9
10 struct S
11 {
12         class P
13         {
14         }
15         
16         public class C : IB<P>
17         {
18         }
19 }
20
21 class M
22 {
23         static void Test<T> (I<T> iface)
24         {
25         }
26
27         static void Test<T> (IB<T> iface)
28         {
29         }
30
31         static void Main ()
32         {
33                 Test (new S.C ());
34         }
35 }