mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
14 lines
208 B
ObjectPascal
14 lines
208 B
ObjectPascal
|
|
{$ifdef fpc}{$MODE OBJFPC}{$endif}
|
|
uses sysutils;
|
|
var
|
|
p:pointer;
|
|
begin
|
|
try
|
|
getmem(p, 1000000000);
|
|
except
|
|
on eoutofmemory do writeln('out of memory!');
|
|
end;
|
|
writeln('program lasts...')
|
|
end.
|