[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0108-5.cs
1 // CS0108: `Derived.Prop' hides inherited member `Base.Prop'. Use the new keyword if hiding was intended
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
4
5 class Base {
6         public bool Prop = false;
7 }
8
9 class Derived : Base {
10         public int Prop {
11             get {
12                 return 0;
13             }
14         }
15 }