[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0534-8.cs
blobeefd8584d8ccec5205468ffb2fd6b3aa23c0d79b
1 // CS0534: `B' does not implement inherited abstract member `A<int>.set_Prop(int)'
2 // Line: 13
4 abstract class A<T>
6 public abstract T Prop {
7 set;
10 public abstract void set_Prop (int value);
13 class B : A<int>
15 public override int Prop {
16 set { }