[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0546-2.cs
blob4cec44865f99b017e88ddeaddced84cf0eb619bf
1 // CS0546: `B.Prop': cannot override because `A.Prop' does not have accessible set accessor
2 // Line: 13
4 public class A
6 public virtual string Prop {
7 get; private set;
11 public class B : A
13 sealed override public string Prop {
14 get { return ""; }