2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0415.cs
blob915e8277b263b58b34899571ba547a7e0ca95e99
1 // CS0415: The `System.Runtime.CompilerServices.IndexerNameAttribute' attribute is valid only on an indexer that is not an explicit interface member declaration
2 // Line: 11
4 using System.Runtime.CompilerServices;
6 interface A {
7 int this [int a] { set; }
10 class X : A {
11 [IndexerName("Error")]
12 int A.this [int a] { set {} }