add ISafeSerializationData
[mcs.git] / tests / gtest-489.cs
blob3e4806968770e7aa5b271a2208eb49ed02fc672e
1 abstract class sample
3 public abstract TValue Value<TKey, TValue> ();
5 class nested<T> : sample
7 struct holder<TKey, TValue>
9 public static TValue Val;
12 public override sealed TValue Value<TKey, TValue> ()
14 return holder<TKey, TValue>.Val;
18 public static void Main ()