**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0633.cs
blob083010b2e81d568372cd36f7b1fbe625c1d5abdd
1 // cs0633.cs: The argument to the 'IndexerName' attribute must be a valid identifier
2 // Line: 5
4 public class MonthDays {
5 [System.Runtime.CompilerServices.IndexerName ("buggypo for you")]
6 public int this [int a] {
7 get {
8 return 0;
12 public static void Main ()
14 int i = new MonthDays () [1];