pascalabcnet/TestSuite/units/u_abstract2.pas
Ivan Bondarev 9acb0d71a8 #2853
2023-05-14 11:36:08 +02:00

7 lines
99 B
ObjectPascal

unit u_abstract2;
type
t1<TSelf> = abstract class
where TSelf: t1<TSelf>;
end;
end.