**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0551.cs
blob38884615f6131181c861f1a617b240c29ce44e19
1 // cs0551.cs: 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;