1 // cs0415.cs: The `IndexerName' attribute is valid only on an indexer that is not an explicit interface member declaration
4 using System
.Runtime
.CompilerServices
;
7 int this [int a
] { set; }
11 [IndexerName("Error")]
12 int A
.this [int a
] { set {}
}