2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs0683.cs
1 // cs0683.cs: `C.I.set_Foo(int)' explicit method implementation cannot implement `I.Foo' because it is an accessor
2 // Line: 11
3
4 interface I
5 {
6    int Foo { set; }
7 }
8
9 class C: I
10 {
11    void I.set_Foo (int v) { }
12 }