This commit is contained in:
Ivan Bondarev 2021-02-07 13:56:05 +01:00
parent f6d146814f
commit 4fbf8389db
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,15 @@
unit u_partial2;
interface
type
t1 = partial class
public constructor := exit;
end;
implementation
type
t1 = partial class end;
end.

View file

@ -0,0 +1,5 @@
uses u_partial2;
begin
new t1;
end.