2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0551-2.cs
blob7e49076bb56b6df7f6347f6874789c30e4127a48
1 // CS0551: Explicit interface implementation `PropertyClass.PropertyInterface.this[bool]' is missing accessor `PropertyInterface.this[bool].get'
2 // Line: 11
4 interface PropertyInterface
6 int this [bool b] { get; set; }
9 public class PropertyClass: PropertyInterface
11 int PropertyInterface.this [bool b] {
12 set {
13 return 0;