a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
264 B
C#
25 lines
264 B
C#
abstract class A<T>
|
|
{
|
|
public abstract T getT ();
|
|
|
|
public class B : A<B>
|
|
{
|
|
public override A<T>.B getT ()
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static int Main ()
|
|
{
|
|
var r = new A<short>.B ();
|
|
if (r.getT () != r)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|