GenericParameter.cs: override Module properly
[mcs.git] / tests / test-117.cs
blobd67451246772276259879cdd58ae049db04305c3
1 using System;
2 using System.Collections;
4 public interface IFoo {
8 public class Blah : IFoo {
10 Hashtable table;
12 public Blah ()
14 table = new Hashtable ();
17 public static int Main ()
19 Blah b = new Blah ();
21 b.table.Add ("Ravi", (IFoo) b);
23 return 0;