Updated project.
[mono.git] / mcs / errors / cs0038-4.cs
1 public class B {
2         public static void Main ()
3         {
4         }
5
6         public int Foo { get { return 1; } }
7
8         public class C {
9                 public void Baz ()
10                 {
11                         int x = Foo;
12                 }
13         }
14 }