2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0683.cs
blob0fc25711f6c8c47c832ad197a8841c2ffb7f02a5
1 // CS0683: `C.I.set_Foo(int)' explicit method implementation cannot implement `I.Foo.set' 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) { }