mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 21:13:45 +02:00
15 lines
231 B
ObjectPascal
15 lines
231 B
ObjectPascal
{ %OPT=-Sew }
|
|
|
|
{ Source provided for Free Pascal Bug Report 2438 }
|
|
{ Submitted by "Armin Diehl" on 2003-03-25 }
|
|
{ e-mail: armin@freepascal.org }
|
|
{$P+}
|
|
|
|
procedure int_str(var s : string);
|
|
begin
|
|
s:='-2147483648';
|
|
end;
|
|
|
|
begin
|
|
end.
|