[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1738-2.cs
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 13
3
4 using System;
5
6 class MyAttribute : Attribute
7 {
8         public MyAttribute (string s, int value)
9         {
10         }
11 }
12
13 [MyAttribute (s : "a", 1)]
14 class C
15 {
16 }