for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0154-2.cs
blob983751523621359543e46fcd512706afdcf2f5cb
1 // CS0154: 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);