pascalabcnet/TestSuite/partial_constructor2.pas

17 lines
179 B
ObjectPascal
Raw Permalink Normal View History

2021-02-07 20:30:55 +03:00
var i: integer;
type
t1 = partial class
constructor;
begin
i := 1;
end;
end;
t1 = partial class
end;
begin
new t1;
assert(i = 1);
end.