fpc/tests/webtbs/tw8049.pp
Jonas Maebe d0b6292137 * disable overflow checking when performing pointer arithmetic
(mantis 8049)

git-svn-id: trunk@5822 -
2007-01-05 21:52:31 +00:00

16 lines
172 B
ObjectPascal

program bug;
{$Q+}
const s:array[0..31] of char='Hell* world';
index:longint=-6;
var c:char;
p,q:Pchar;
begin
p:=s;
q:=p-index;
writeln('Hello ',q);
end.