[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0082.cs
1 // CS0082: A member `Test.get_Value()' is already reserved
2 // Line: 7
3
4 public class Test
5 {
6         public string get_Value () { return null; }
7         public string Value {
8                 get { }
9         }
10 }