tb0063.pp 650 B

12345678910111213141516171819202122232425262728
  1. { Old file: tbs0069.pp }
  2. { Shows problem with far qualifier in units OK 0.99.1 (CEC) }
  3. Unit tb0063;
  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;Near; *)
  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;
  16. Begin
  17. end;
  18. end.