Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-anon-77.cs
1 using System;
2
3 delegate void D ();
4
5 public class y
6 {
7         bool [] xs;
8         public bool this [int n]
9         {
10                 get {
11                         D d = delegate () { n = 1; };
12                         return true;
13                 }
14
15                 set { xs [n] = value; }
16         }
17         
18         public static void Main ()
19         {
20         }
21 }