summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0633-6.cs
blob: f67d186bae9bb43ef1e629cddad683db730fd9f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0633: The argument to the `System.Runtime.CompilerServices.IndexerNameAttribute' attribute must be a valid identifier
// Line: 8

using System.Runtime.CompilerServices;

public class C
{
	[IndexerName (null)]
	public string this [int i] {
		set { }
	}
}