GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-478.cs
blobfa1052fd798b0105a73bb4133b585ee953fd8592
1 using System;
3 interface IA
5 void Foo ();
8 interface IG<T> : IA
10 void GenFoo ();
13 class M : IG<int>
15 public void Foo ()
19 public void GenFoo ()
23 public static void Main ()
25 IG<int> v = new M ();
26 v.Foo ();