[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1744.cs
1 // CS1744: Named argument `a' cannot be used for a parameter which has positional argument specified
2 // Line: 12
3
4 static class C
5 {
6         public static void Test (int a, int b)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Test (1, a : 2);
13         }
14 }