* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0154-2.cs
1 // cs0154-2.cs: The property or indexer `B.Foo' cannot be used in this context because it lacks the `get' accessor
2 // Line: 13
3 // this is bug 55780.
4
5 class A {
6         public int Foo { get { return 1; } }
7 }
8
9 class B : A {
10         public new int Foo { set { } }
11         static void Main ()
12         {
13                 System.Console.WriteLine (new B ().Foo);
14         }
15 }