summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0117-4.cs
blob: 5dd7149c0ed432125f0dc58999c30c1973aa9972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0117: `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a definition for `errorarg'
// Line: 

using System.Runtime.CompilerServices;

public class E
{
   [IndexerName("xxx", errorarg = "")]
   public int this[int index] {
      get {
         return 0;
      }
   }
}