pascalabcnet/TestSuite/units/u_partial2.pas

15 lines
154 B
ObjectPascal
Raw Permalink Normal View History

2021-02-07 15:56:05 +03:00
unit u_partial2;
interface
type
t1 = partial class
public constructor := exit;
end;
implementation
type
t1 = partial class end;
end.