cleol
[mcs.git] / errors / cs0683.cs
blobf3429d633a34da7fcd31c3f0db3c23b866814ae1
1 // cs0683.cs: `C.I.set_Foo(int)' explicit method implementation cannot implement `I.Foo' because it is an accessor
2 // Line: 11
4 interface I
6 int Foo { set; }
9 class C: I
11 void I.set_Foo (int v) { }