a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
196 B
C#
22 lines
196 B
C#
class A<X>
|
|
{
|
|
public virtual void Foo<T> () where T : A<T>
|
|
{
|
|
}
|
|
}
|
|
|
|
class B : A<int>
|
|
{
|
|
public override void Foo<T> ()
|
|
{
|
|
}
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static int Main ()
|
|
{
|
|
new B ();
|
|
return 0;
|
|
}
|
|
} |