New tests.
[mono.git] / mcs / tests / gtest-478.cs
1 using System;
2
3 interface IA
4 {
5         void Foo ();
6 }
7
8 interface IG<T> : IA
9 {
10         void GenFoo ();
11 }
12
13 class M : IG<int>
14 {
15         public void Foo ()
16         {
17         }
18         
19         public void GenFoo ()
20         {
21         }
22         
23         public static void Main ()
24         {
25                 IG<int> v = new M ();
26                 v.Foo ();
27         }
28 }