[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0470.cs
blobf4a27205cb95b5dd9f532660bdc7f16f932b9ef1
1 // CS0470: Method `C.get_P()' cannot implement interface accessor `I.P.get'
2 // Line: 11
4 interface I
6 int P { get; }
9 class C : I
11 public int get_P ()
13 return 1;