[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0551.cs
blob036d2e35e29e44c4d0c63a6a65f680f53e2d1127
1 // CS0551: Explicit interface implementation `PropertyClass.PropertyInterface.Value' is missing accessor `PropertyInterface.Value.set'
2 // Line: 9
4 interface PropertyInterface {
5 int Value { get; set; }
8 public class PropertyClass: PropertyInterface {
9 int PropertyInterface.Value {
10 get {
11 return 0;