Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0551.cs
1 // CS0551: 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