fpc/tests/webtbs/tw17236.pp
Jonas Maebe 51616b7bd6 * enabled a bunch of tests also for aix
git-svn-id: trunk@20821 -
2012-04-11 18:04:57 +00:00

11 lines
251 B
ObjectPascal

{ %target=linux,darwin,freebsd,netbsd,openbsd,sunos,beos,haiku,aix }
{ %cpu=x86_64,powerpc64,mips64,sparc64,ia64,alpha }
{ windows does not support statics > 2GB }
var
i : longint;
a : array[0..1500000000] of longint;
begin
writeln(a[i]);
end.