[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / gtest-084.cs
blobf491a24dfff50460233a9a245ac7dde88bcea7de
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 public static void Main ()
27 { }