Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / tests / gtest-549.cs
1 class C<T>
2 {
3         public interface IA
4         {
5                 void MA (T arg);
6         }
7         
8         public interface IB : IA
9         {
10                 void MB (T arg);
11         }
12 }
13
14 class D : C<int>
15 {
16         public class Impl : IB
17         {
18                 public void MA (int arg)
19                 {
20                 }
21                 
22                 public void MB (int arg)
23                 {
24                 }
25         }
26 }
27
28 class Test
29 {
30         public static void Main ()
31         {
32                 C<int>.IB arg = new D.Impl ();
33                 arg.MA (1);
34                 arg.MB (1);     
35         }
36 }