pascalabcnet/TestSuite/partial_constructor6.pas

14 lines
270 B
ObjectPascal
Raw Normal View History

2021-02-09 15:43:39 +03:00
type
t1 = partial class end;
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.