fpc/tests/webtbs/tw16377.pp
Jonas Maebe 3f280c34cb * don't generate range checking code for pointers-indexed-as-arrays when
using non-constant indices (mantis #16377)

git-svn-id: trunk@15221 -
2010-05-04 10:39:01 +00:00

15 lines
193 B
ObjectPascal

program project1;
const
S: string = '123';
var
I: Integer;
P: PChar;
begin
{$RANGECHECKS ON}
P := PChar(@S[2]);
I := -1;
if (P[-1]<>'1') or
(P[I]<>'1') then
halt(1);
end.