[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1669-3.cs
1 // CS1669: __arglist is not valid in this context
2 // Line: 6
3
4 class C
5 {
6         public static explicit operator X (__arglist)
7         {
8                 return null;
9         }
10 }