tb0066.pp 621 B

123456789101112131415161718192021222324252627282930313233
  1. { Old file: tbs0073.pp }
  2. { shows incompatiblity with bp for distance qualifiers OK 0.99.6 (PFV) }
  3. Unit tb0066;
  4. Interface
  5. Procedure MyTest;Far; { IMPLEMENTATION expected error. }
  6. { Further information: NEAR IS NOT ALLOWED IN BORLAND PASCAL }
  7. { Therefore the bugfix should only be for the FAR keyword. }
  8. Procedure MySecondTest;
  9. Implementation
  10. { near and far are not allowed here, but maybe we don't care since they are ignored by }
  11. { FPC. }
  12. Procedure MyTest;
  13. Begin
  14. end;
  15. Procedure MySecondTest;Far;
  16. Begin
  17. end;
  18. end.