[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0547.cs
1 // CS0547: `PropertyClass.Value': property or indexer cannot have void type
2 // Line: 5
3
4 class PropertyClass {
5         public void Value { get {} }
6 }