tb0135.pp 372 B

12345678910111213141516171819202122232425
  1. { Old file: tbs0159.pp }
  2. { Invalid virtual functions - should compile OK 0.99.7 (FK) }
  3. Type TParent = Object
  4. Procedure SomeProc;
  5. end;
  6. TChild = Object(TParent)
  7. Procedure SomeProc; virtual;
  8. end;
  9. Procedure TParent.someproc;
  10. Begin
  11. end;
  12. procedure TChild.Someproc;
  13. Begin
  14. end;
  15. Begin
  16. end.