bug0159.pp 273 B

12345678910111213141516171819202122
  1. Type TParent = Object
  2. Procedure SomeProc;
  3. end;
  4. TChild = Object(TParent)
  5. Procedure SomeProc; virtual;
  6. end;
  7. Procedure TParent.someproc;
  8. Begin
  9. end;
  10. procedure TChild.Someproc;
  11. Begin
  12. end;
  13. Begin
  14. end.