[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0540-3.cs
1 // CS0540: `Foo.ISomeProp.SomeProperty': containing type does not implement interface `ISomeProp'
2 // Line: 18
3
4 public class SomeProperty
5 {
6 }
7
8 public abstract class SomeAbstract : ISomeProp
9 {
10         public abstract SomeProperty SomeProperty { get; }
11 }
12
13 interface ISomeProp
14 {
15         SomeProperty SomeProperty { get; }
16 }
17
18 public class Foo : SomeAbstract
19 {
20         SomeProperty ISomeProp.SomeProperty { get { return null; } }
21
22         public override SomeProperty SomeProperty { get { return null; } }
23
24         public static void Main ()
25         {
26         }
27 }