[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0115-7.cs
blob78e05d552b2d67d0825502a52e2c90c822ac353d
1 // CS0115: `C.P' is marked as an override but no accessible `set' accessor found to override
2 // Line: 11
4 abstract class B
6 public virtual int P {
7 get;
8 private set;
12 class C : B
14 public override int P {
15 get { return 5; }
16 set { }