[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0177-99.cs
1 // CS0177: The out parameter `o' must be assigned to before control leaves the current method
2 // Line: 4
3 // Compiler options: -langversion:experimental
4
5 class Test(out int o) 
6 {
7 }