[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8141-2.cs
blob42c80cea0cdbee6b03249ef016ec4db1a18ccacd
1 // CS8141:
2 // Line: 11
4 public interface I<T>
6 int this[T arg] { get; set; }
9 public class C : I<(int a, int b)>
11 public int this[(int c, int d) arg] {
12 get {
13 return 1;
15 set {