2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / errors / cs0551.cs
1 // cs0551.cs: Explicit interface implementation 'PropertyClass.PropertyInterface.Value' is missing accessor 'PropertyInterface.Value.set'
2 // Line: 9
3
4 interface PropertyInterface {
5         int Value { get; set; }
6 }
7
8 public class PropertyClass: PropertyInterface {
9         int PropertyInterface.Value { 
10                 get { 
11                         return 0;
12                 } 
13         }
14 }
15
16