TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0550-2.cs
blobcf32d29e8b9d66c38980bebc31987446bdb07fff
1 // CS0550: `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 { }