19 lines
264 B
C#
Raw Normal View History

// CS0534: `B' does not implement inherited abstract member `A<int>.set_Prop(int)'
// Line: 13
abstract class A<T>
{
public abstract T Prop {
set;
}
public abstract void set_Prop (int value);
}
class B : A<int>
{
public override int Prop {
set { }
}
}