[amd64] Save missing register
[mono.git] / mcs / errors / cs8141-2.cs
1 // CS8141:
2 // Line: 11
3
4 public interface I<T>
5 {
6         int this[T arg] { get; set; }
7 }
8
9 public class C : I<(int a, int b)>
10 {
11         public int this[(int c, int d) arg] {
12                 get {
13                         return 1;
14                 }
15                 set {
16
17                 }
18         }
19 }