[interp] Don't check for exception in native wrappers (#14184)
[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 ""; }