add ISafeSerializationData
[mcs.git] / tests / test-753.cs
blob72d7a4764c88183089287e3dde6be36905adc1a8
1 interface IA
3 string val { get; set; }
6 interface IAI : IA
8 new int val { get; set; }
11 interface IAI2 : IAI { }
13 class AI2 : IAI2
15 public int val { get { return 42; } set { } }
16 string IA.val { get { return "13"; } set { } }
18 public void stuff (IAI2 other)
20 val = other.val;
23 public static void Main ()