Copied remotely
[mono.git] / mcs / errors / cs0108-6.cs
1 // cs0108.cs: The new keyword is required on 'Derived.Prop' because it hides inherited member
2 // Line: 13
3
4 class Base {
5         public int Prop {
6             get {
7                 return 0;
8             }
9         }    
10 }
11
12 class Derived : Base {
13         public bool Prop = false;
14 }