Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0551-2.cs
1 // CS0551: Explicit interface implementation `PropertyClass.PropertyInterface.this[bool]' is missing accessor `PropertyInterface.this[bool].get'
2 // Line: 11
3
4 interface PropertyInterface
5 {
6         int this [bool b] { get; set; }
7 }
8
9 public class PropertyClass: PropertyInterface
10 {
11         int PropertyInterface.this [bool b] { 
12                 set { 
13                         return 0;
14                 } 
15         }
16 }
17