**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0108-7.cs
blobcfb4925b62b95d67396061547bf175a5888fb606
1 // cs0108.cs: The new keyword is required on 'Derived.Prop because it hides inherited member
2 // Line: 13
4 class Base {
5 public bool Prop = false;
8 class Derived : Base {
9 public void Prop (bool b) {}