Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0534-11.cs
1 // CS0534: `Foo' does not implement inherited abstract member `SomeAbstract.SomeProperty.get'
2 // Line: 13
3
4 public class SomeProperty
5 {
6 }
7
8 public abstract class SomeAbstract
9 {
10         public abstract SomeProperty SomeProperty { get; }
11 }
12
13 public class Foo : SomeAbstract
14 {
15         public static SomeProperty SomeProperty { get { return null; } }
16 }
17