pascalabcnet/TestSuite/partial_constructor5.pas

12 lines
239 B
ObjectPascal
Raw Normal View History

2021-02-09 15:43:39 +03:00
type
t0 = class
public constructor := exit;
public constructor(x: byte) := exit;
end;
t1 = partial class(t0) end;
t1 = partial class(t0) end;
begin
Assert( 2 = typeof(t1).GetConstructors.Length );
end.