tw3337.pp 298 B

1234567891011121314151617181920
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 3337 }
  3. { Submitted by "Vincent Snijders" on 2004-10-01 }
  4. { e-mail: [email protected] }
  5. {$mode objfpc}
  6. type
  7. TB=class
  8. function AddNewFile: integer; override;
  9. end;
  10. function TB.AddNewFile: integer;
  11. begin
  12. Result:= 5;
  13. end;
  14. begin
  15. end.