Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / errors / cs8123-2.cs
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
4
5 class C
6 {
7         public static void Main ()
8         {
9                 (int tt1, int tt2) t = (a: 1, 2);
10         }
11 }