[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0683.cs
1 // CS0683: `C.I.set_Foo(int)' explicit method implementation cannot implement `I.Foo.set' 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 }