blob: 665e6686328fcea4c9604987e501b5554c951102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// CS0534: `B' does not implement inherited abstract member `A<int>.set_Prop(int)'
// Line: 13
abstract class A<T>
{
public abstract void set_Prop (int value);
public virtual T Prop {
set { }
}
}
class B : A<int>
{
public override int Prop {
set { }
}
}
|