add ISafeSerializationData
[mcs.git] / tests / test-anon-77.cs
blobaa590d111d4dceeb5d19e02df5bf6ddd3a9a960a
1 using System;
3 delegate void D ();
5 public class y
7 bool [] xs;
8 public bool this [int n]
10 get {
11 D d = delegate () { n = 1; };
12 return true;
15 set { xs [n] = value; }
18 public static void Main ()