pascalabcnet/TestSuite/units/u_indirect2.pas

10 lines
121 B
ObjectPascal
Raw Permalink Normal View History

2024-03-26 22:55:51 +03:00
unit u_indirect2;
uses u_indirect3;
type
t1<T> = class end;
t2 = class(t1<t_err>) end;
t3 = t1<t_err>;
end.