pascalabcnet/TestSuite/units/u_partial1.pas
Ivan Bondarev 438be14bd2 #2432
2021-02-07 12:36:52 +01:00

19 lines
178 B
ObjectPascal

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.