mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 21:02:36 +02:00
11 lines
247 B
ObjectPascal
11 lines
247 B
ObjectPascal
{ %target=linux,darwin,freebsd,netbsd,openbsd,sunos,beos,haiku }
|
|
{ %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.
|