update
[mono.git] / mcs / errors / cs0108-7.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 bool Prop = false;
6 }
7
8 class Derived : Base {
9         public void Prop (bool b) {}
10 }