[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-069.cs
blob0411196dc6980707b6a7db88f411e20191a06901
1 public interface IFoo
3 int GetHashCode ();
6 public interface IFoo<T>
8 int GetHashCode ();
11 public class Test<T>
13 public int Foo (IFoo<T> foo)
15 return foo.GetHashCode ();
18 public int Foo (IFoo foo)
20 return foo.GetHashCode ();
24 class X
26 public static void Main ()
27 { }