mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 11:38:01 +02:00
17 lines
318 B
ObjectPascal
17 lines
318 B
ObjectPascal
{ Old file: tbs0221.pp }
|
|
{ syntax parsing incompatibilities with tp7 OK 0.99.11 (PFV) }
|
|
|
|
|
|
var
|
|
r : double;
|
|
c : char;
|
|
begin
|
|
r:=1.;
|
|
c:=^.; { this compile in tp7, c should contain 'n'/#110 }
|
|
if c<>#110 then
|
|
begin
|
|
Writeln('FPC does not support ^. character!');
|
|
Halt(1);
|
|
end;
|
|
end.
|