[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1547-6.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 6
3
4 class C {
5         object o = new void();
6 }