(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0415.cs
blob3c478a7ff3d775359c4fb769ce30147bbfc6c4bf
1 // cs0415: The 'IndexerName' 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 {} }