tw9306c.pp 244 B

123456789101112131415161718192021
  1. { %fail }
  2. type
  3. tobj = object
  4. function f: integer; virtual;
  5. end;
  6. tobj2 = object(tobj)
  7. function f: string; virtual;
  8. end;
  9. function tobj.f: integer;
  10. begin
  11. end;
  12. function tobj2.f:string;
  13. begin
  14. end;
  15. begin
  16. end.