2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0550-2.cs
blob60178219b2da2767e78b0234439e07070f7fb5b1
1 // cs0550-2.cs: `PropertyClass.PropertyInterface.this[bool].get' is an accessor not found in interface member `PropertyInterface.this[bool]'
2 // Line: 13
4 using System.Runtime.CompilerServices;
6 interface PropertyInterface {
7 int this[bool b] { set; }
10 public class PropertyClass: PropertyInterface {
11 int PropertyInterface.this [bool b]{
12 get {
13 return 0;
15 set { }