add ISafeSerializationData
[mcs.git] / tests / test-605.cs
blob600695d6233e013bfc976648b98b50506a9c6b68
1 class TestA
3 public virtual string Method
5 get { return null; }
9 class TestB : TestA
11 private string Method
13 get { return null; }
16 public static void Main ()