[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0108-4.cs
1 // CS0108: `Derived.Prop' hides inherited member `Base.Prop(int)'. Use the new keyword if hiding was intended
2 // Line: 10
3 // Compiler options: -warnaserror -warn:2
4
5 class Base {
6         public void Prop (int a) {}
7 }
8
9 class Derived : Base {
10         public int Prop {
11             get {
12                 return 0;
13             }
14         }
15 }