[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0470.cs
1 // CS0470: Method `C.get_P()' cannot implement interface accessor `I.P.get'
2 // Line: 11
3
4 interface I
5 {
6         int P { get; }
7 }
8
9 class C : I
10 {
11         public int get_P ()
12         {
13                 return 1;
14         }
15 }