[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0534-11.cs
blob7d67ac65158e744d83292ea80f3f59ad94b4ffda
1 // CS0534: `Foo' does not implement inherited abstract member `SomeAbstract.SomeProperty.get'
2 // Line: 13
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; } }