blob: 749f8ace2ed46da64da099e545cd069c6e5e2e9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ Old file: tbs0069.pp }
{ Shows problem with far qualifier in units OK 0.99.1 (CEC) }
Unit tb0063;
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.
|