7 lines
99 B
ObjectPascal
7 lines
99 B
ObjectPascal
|
|
unit u_abstract2;
|
|||
|
|
type
|
|||
|
|
t1<TSelf> = abstract class
|
|||
|
|
where TSelf: t1<TSelf>;
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
end.
|