2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0551.cs
1 // cs0551.cs: Explicit interface implementation 'PropertyClass.PropertyInterface.Value' is missing accessor 'PropertyInterface.Value.set'\r
2 // Line: 9\r
3 \r
4 interface PropertyInterface {\r
5         int Value { get; set; }\r
6 }\r
7 \r
8 public class PropertyClass: PropertyInterface {\r
9         int PropertyInterface.Value { \r
10                 get { \r
11                         return 0;\r
12                 } \r
13         }\r
14 }\r
15 \r
16 \r