[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0109.cs
1 // CS0109: The member `BaseClass.Location' does not hide an inherited member. The new keyword is not required
2 // Line: 6
3 // Compiler options: -warnaserror -warn:4
4
5 class BaseClass {
6         public new int Location;
7 }