fpc/tests/webtbs/tw14743.pp
2009-10-10 10:14:49 +00:00

23 lines
279 B
ObjectPascal

{$mode delphi}
program tbreintroduce;
type
parent = object
constructor init;
end;
child = object(parent)
constructor init(a : byte);reintroduce;
end;
constructor parent.init;
begin
end;
constructor child.init(a : byte);
begin
end;
begin
end.