2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0633-4.cs
blob8524d4b84a55f3a9da8301d0f81661e85dec1854
1 // CS0633: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
2 // Line: 8
4 using System.Runtime.CompilerServices;
6 public class C
8 [IndexerName ("class")]
9 public string this [int i] {
10 set { }