fpc/bugs/bug0069.pp
1998-03-25 11:26:49 +00:00

26 lines
551 B
ObjectPascal

Unit bug0068;
Interface
Procedure MyTest;Far; { IMPLEMENTATION expected error. }
{ Further information: NEAR IS NOT ALLOWED IN BORLAND PASCAL }
{ Therefore the bugfix should only be for the FAR keyword. }
(* Procedure MySecondTest;Near; *)
Implementation
{ near and far are not allowed here, but maybe we don't care since they are ignored by }
{ FPC. }
Procedure MyTest;
Begin
end;
Procedure MySecondTest;
Begin
end;
end.