pascalabcnet/TestSuite/partial_constructor1.pas

13 lines
160 B
ObjectPascal
Raw Permalink Normal View History

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