Merge pull request #4816 from BrzVlad/fix-remoting-exception
[mono.git] / mcs / tests / gtest-479.cs
1 using System;
2
3 interface I<T>
4 {
5 }
6
7 class A : I<int>
8 {
9 }
10
11 class B : A
12 {
13 }
14
15 class M
16 {
17         static void Test<T> (I<T> f)
18         {
19         }
20         
21         public static void Main ()
22         {
23                 Test (new A ());
24                 Test (new B ());
25         }
26 }