eol
[mcs.git] / tests / gtest-479.cs
blob5ad555b9353b1efbcd7633b61f88e77130293c8f
1 using System;
3 interface I<T>
7 class A : I<int>
11 class B : A
15 class M
17 static void Test<T> (I<T> f)
21 public static void Main ()
23 Test (new A ());
24 Test (new B ());