pascalabcnet/TestSuite/units/u_abstract2.pas

7 lines
99 B
ObjectPascal
Raw Permalink Normal View History

2023-05-14 12:36:08 +03:00
unit u_abstract2;
type
t1<TSelf> = abstract class
where TSelf: t1<TSelf>;
end;
end.