Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0633-4.cs
1 // CS0633: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5
6 public class C
7 {
8         [IndexerName ("class")]
9         public string this [int i] {
10                 set { }
11         }
12 }