summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0534-11.cs
blob: 7d67ac65158e744d83292ea80f3f59ad94b4ffda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0534: `Foo' does not implement inherited abstract member `SomeAbstract.SomeProperty.get'
// Line: 13

public class SomeProperty
{
}

public abstract class SomeAbstract
{
	public abstract SomeProperty SomeProperty { get; }
}

public class Foo : SomeAbstract
{
	public static SomeProperty SomeProperty { get { return null; } }
}