add SafeSerializationEventArgs
[mcs.git] / tests / gtest-anon-25.cs
blob4d1017c06c20215cd0b3539a1c7141647993e237
1 using System;
2 using System.Collections.Generic;
4 class HS<T>
6 public HS (IEqualityComparer<T> comparer)
11 class Test
13 static void Foo<T> (IEqualityComparer<T> c)
15 Func<HS<T>> a = () => {
16 return new HS<T> (c);
20 public static int Main ()
22 Foo<object> (null);
23 return 0;