[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0106-2.cs
1 // CS0106: The modifier `volatile' is not valid for this item
2 // Line: 8
3 // Compiler options: -unsafe
4
5 public unsafe struct S
6 {
7                 volatile fixed char b[8];
8 }
9