fpc/tests/webtbs/tw38636.pp
florian 47eb7cec0c * test needs objfpc mode else i is 16 bit only
git-svn-id: trunk@49074 -
2021-03-28 21:09:35 +00:00

22 lines
288 B
ObjectPascal

{$mode objfpc}
program Project1;
{$ifdef cpu64}
const
lowlimit = 536879040;
procedure test(i : integer);
const
myarray : array[lowlimit..lowlimit+2] of integer = (1,2,3);
begin
if @myarray[i]<>@myarray then
halt(1);
end;
begin
test(lowlimit);
{$else}
begin
{$endif}
end.