fix run-test
[mcs.git] / errors / cs0551-2.cs
blob01b4b6f6f60e6293cfde43cd5c672e55716e3061
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;