ChangeLog entries
[mono.git] / mcs / errors / cs0633.cs
1 public class MonthDays {
2    [System.Runtime.CompilerServices.IndexerName ("buggypo for you")]
3    public int this [int a] {
4       get {
5          return 0;
6       }
7    }
8
9    public static void Main ()
10    {
11         int i = new MonthDays () [1];
12    }
13 }
14
15