[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8123-2.cs
blob4fe11eebc3505251b49bfdd07b666a4fb04ed8e9
1 // CS8123: The tuple element name `a' is ignored because a different name or no name is specified by the target type `(int, int)'
2 // Line: 9
3 // Compiler options: -warnaserror
5 class C
7 public static void Main ()
9 (int tt1, int tt2) t = (a: 1, 2);