1 // CS0540: `Foo.ISomeProp.SomeProperty': containing type does not implement interface `ISomeProp'
4 public class SomeProperty
8 public abstract class SomeAbstract
: ISomeProp
10 public abstract SomeProperty SomeProperty { get; }
15 SomeProperty SomeProperty { get; }
18 public class Foo
: SomeAbstract
20 SomeProperty ISomeProp
.SomeProperty { get { return null; }
}
22 public override SomeProperty SomeProperty { get { return null; }
}
24 public static void Main ()