fpc/tests/tbs0159.pp
1998-12-02 13:05:01 +00:00

22 lines
273 B
ObjectPascal

Type TParent = Object
Procedure SomeProc;
end;
TChild = Object(TParent)
Procedure SomeProc; virtual;
end;
Procedure TParent.someproc;
Begin
end;
procedure TChild.Someproc;
Begin
end;
Begin
end.