[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0103-12.cs
1 // CS0103: The name `bar' does not exist in the current context
2 // Line: 8
3
4 public class Test
5 {
6         static void Main ()
7         {
8                 if (false && bar ()) {
9                 }
10         }
11 }