pascalabcnet/TestSuite/errors/err0168.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

21 lines
216 B
ObjectPascal

type TBase = class
constructor Create(i : integer);
begin
end;
constructor Create(r : real);
begin
end;
end;
type TDer = class(TBase)
constructor Create(s : string);
begin
inherited;
end;
end;
begin
end.