Reflect latest API changes.
[mono.git] / mcs / errors / cs0550.cs
1 // cs0550.cs: 'PropertyClass.PropertyInterface.Value.set' adds an accessor not found in interface member 'PropertyInterface.Value'\r
2 // Line: 13\r
3 \r
4 interface PropertyInterface {\r
5         int Value { get; }\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                 set { }\r
14         }\r
15 }\r
16 \r
17 \r