[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1641.cs
1 // CS1641: A fixed size buffer field must have the array size specifier after the field name
2 // Line: 6
3
4 public struct S
5 {
6     fixed sbyte[] test;
7 }