[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0108-4.cs
blobd8ba1ace13a09baa1f3933e713f7ff054441f771
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
5 class Base {
6 public void Prop (int a) {}
9 class Derived : Base {
10 public int Prop {
11 get {
12 return 0;