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: 2bac70bb81771983c122d184c481bdc5ebfb3a38 (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.set' because it is an accessor
// Line: 11

interface I
{
   int Foo { set; }
}

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