Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0550-2.cs
1 // CS0550: `PropertyClass.PropertyInterface.this[bool].get' is an accessor not found in interface member `PropertyInterface.this[bool]'
2 // Line: 13
3
4 using System.Runtime.CompilerServices;
5
6 interface PropertyInterface {
7         int this[bool b] { set; }
8 }
9
10 public class PropertyClass: PropertyInterface {
11         int PropertyInterface.this [bool b]{ 
12                 get { 
13                         return 0;
14                 } 
15                 set { }
16         }
17 }
18
19