[mcs] Allow properties and indexers of by-ref values to be set without setter
[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 }