fpc/tests/tbs0221.pp
1999-06-03 10:28:26 +00:00

14 lines
218 B
ObjectPascal

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.