[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs8123.cs
blobcf446b29ecd66d380630d438c39005584392f8ca
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
5 static class X
7 static (long a, string x) Test ()
9 return (b: 1, "");