TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0633.cs
blob28c557771419e9c2e28419b2684b185068a47812
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 ("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];