[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs8127.cs
1 // CS8127: The tuple element name `a' is a duplicate
2 // Line: 6
3
4 class C
5 {
6         static (int a, int a) Test ()
7         {
8                 return null;
9         }
10 }