[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-891.cs
1 interface I
2 {
3         int P { get; }
4 }
5
6 class B : I
7 {
8         int I.P { get { return 1; } }
9 }
10
11 class C : B
12 {
13         public int get_P ()
14         {
15                 return 1;
16         }
17
18         public static void Main ()
19         {
20         }
21 }