[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0633-2.cs
blob30acfd9d146737838592e21f5288c711338ae145
1 // CS0633: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
2 // Line: 5
4 public class MonthDays {
5 [System.Runtime.CompilerServices.IndexerName ("")]
6 public int this [int a] {
7 get {
8 return 0;
12 public static void Main ()
14 int i = new MonthDays () [1];