add SafeSerializationEventArgs
[mcs.git] / tests / gtest-084.cs
blobc0449b220535fd7e22dbce81dc4ca2185cc74e63
1 namespace HasherBuilder
3 public class ByPrototype<S>
5 public static IHasher<S> Examine()
7 return null;
12 public interface IHasher<T>
16 public class ArrayList<U>
18 public IHasher<U> GetHasher ()
20 return HasherBuilder.ByPrototype<U>.Examine();
24 class X
26 static void Main ()
27 { }