add ISafeSerializationData
[mcs.git] / tests / gtest-508.cs
blob5d83ae4eca9dd2882fe558a772cb3bf89eb5918f
1 using T = A<int>;
3 class B : T
5 public B (int i)
6 : base (i)
10 public static void Main ()
12 T t = new B (4);
16 class A<T> where T : struct
18 protected A(T t)