codeowners update
[mono.git] / mcs / errors / cs8123.cs
1 // CS8123: The tuple element name `b' is ignored because a different name or no name is specified by the target type `(long, string)'
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 static class X
6 {
7         static (long a, string x) Test ()
8         {
9                 return (b: 1, "");
10         }
11 }