[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0525-2.cs
1 // CS0525: Interfaces cannot contain fields or constants
2 // Line: 9
3
4 interface Interface
5 {
6     const bool value = false;
7 }