[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8141.cs
blobfd3c05f57f19e20459dc8c43e3ce296487282dff
1 // CS8141:
2 // Line: 9
4 public interface I<T>
6 T Test ();
9 public class C : I<(int a, int b)>
11 public (int c, int d) Test ()
13 return (1, 2);