pascalabcnet/TestSuite/inherited2.pas
Бондарев Иван df8a5445ec bug fix #865
bug fix #867
2018-06-03 14:48:27 +02:00

16 lines
243 B
ObjectPascal

type
t1 = class
function p1:byte; virtual := 1;
end;
t2 = class(t1)
function p1:byte; override;
begin
var b:byte := inherited p1;
Result := b;
end;
end;
begin
var o := new t2;
assert(o.p1 = 1);
end.