2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-087.cs
blobab253043357c7ee8ebf37a1b556e65fb99773d6f
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 static void Main ()
33 { }