[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-087.cs
blobdea552fb3ee0f1a542557476dd6867f101a527d8
1 namespace C5
3 public class HashedArrayList<T>
5 public void Test ()
7 new HashSet <KeyValuePair<T,int>> (new KeyValuePairHasher<T,int> ());
11 public class HashSet<T>
13 public HashSet (IHasher<T> itemhasher)
14 { }
17 public interface IHasher<T>
21 public struct KeyValuePair<K,V>
25 public sealed class KeyValuePairHasher<K,V>: IHasher<KeyValuePair<K,V>>
30 class X
32 public static void Main ()
33 { }