pascalabcnet/TestSuite/units/u_partial1.pas

19 lines
178 B
ObjectPascal
Raw Permalink Normal View History

2021-02-07 14:36:52 +03:00
unit u_partial1;
interface
type
t0<T> = class end;
t1<T> = partial class(t0<T>)
end;
implementation
type
t1<T> = partial class(t0<T>)
end;
end.