2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0154-2.cs
blob76d8e93e45873ddb4144830ae71e62e5e911f475
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.
5 class A {
6 public int Foo { get { return 1; } }
9 class B : A {
10 public new int Foo { set { } }
11 static void Main ()
13 System.Console.WriteLine (new B ().Foo);