Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0683.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3429d633a34da7fcd31c3f0db3c23b866814ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0683.cs: `C.I.set_Foo(int)' explicit method implementation cannot implement `I.Foo' because it is an accessor
// Line: 11

interface I
{
   int Foo { set; }
}

class C: I
{
   void I.set_Foo (int v) { }
}