[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0117-4.cs
blob5dd7149c0ed432125f0dc58999c30c1973aa9972
1 // CS0117: `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a definition for `errorarg'
2 // Line:
4 using System.Runtime.CompilerServices;
6 public class E
8 [IndexerName("xxx", errorarg = "")]
9 public int this[int index] {
10 get {
11 return 0;