[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0115-7.cs
1 // CS0115: `C.P' is marked as an override but no accessible `set' accessor found to override
2 // Line: 11
3
4 abstract class B
5 {
6         public virtual int P {
7                 get;
8                 private set;
9         }
10 }
11
12 class C : B
13 {
14         public override int P {
15                 get { return 5; }
16                 set { }
17         }
18 }