1 // CS0534: `Foo' does not implement inherited abstract member `SomeAbstract.SomeProperty.get'
4 public class SomeProperty
8 public abstract class SomeAbstract
10 public abstract SomeProperty SomeProperty { get; }
13 public class Foo
: SomeAbstract
15 public static SomeProperty SomeProperty { get { return null; }
}